of interest to me was the ability to get informati...
# general
s
of interest to me was the ability to get information back from a chart and possibly use that as a value in other chart install. My use case is with CRD. So I tried to use the getResource as show here as follows: getResource(“kubeless.io/v1beta1”, “kinesis-trigger”); But that results in error TS2345: Argument of type ‘“kubeless.io/v1beta1”’ is not assignable to parameter of type ‘“storage.k8s.io/v1beta1/StorageClassList”’.
w
We’re working on a fix for this in https://github.com/pulumi/pulumi-kubernetes/pull/226. In the meantime, you can pass
<any>”<http://kubeless.io/v1beta1|kubeless.io/v1beta1>”
and it should work.
s
cool. Let me try