nutritious-flower-51098
09/11/2020, 10:32 AMargs.resources.filter(r => r.isType(kubernetes.helm.v3.Chart)).map( resource => {
<http://pulumi.log.info|pulumi.log.info>(`We have a resource ${resource.type} = ${resource.name}`)
}) // This doesn't print out anything
But if we remove .filter()
, we can see our kubernetes:<http://helm.sh/v3:Chart|helm.sh/v3:Chart>
resource. Shouldn’t this work?gentle-diamond-70147
09/11/2020, 3:21 PMChart
is actually a ComponentResource
, so you need to do something special there... let me look.nutritious-flower-51098
09/11/2020, 3:55 PM