https://pulumi.com logo
s

square-crayon-17656

09/28/2018, 10:47 PM
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

white-balloon-205

09/28/2018, 11:14 PM
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

square-crayon-17656

09/28/2018, 11:16 PM
cool. Let me try