Changing the `values` for a `k8s.helm.v2.Chart` do...
# general
f
Changing the
values
for a
k8s.helm.v2.Chart
does not output that any resource was updated. Is this expected?
b
This should definitely work. One thing that is a little subtle is that, because
Chart
isn't a physical resource, I don't think it'll necessarily show a diff. Instead, I believe that you'll only see a diff if the processing of the values implied a modification to any of the underlying Kubernetes resources. Is it possible that your
values
change didn't impact the settings on any Kubernetes objects? Note that it could be worth using the
ComponentResource
capability to pass resource inputs here so that at least the
Chart
shows as diffed. /cc @creamy-potato-29402 @gorgeous-egg-16927 @breezy-hamburger-69619 in case I've misunderstood
c
It is very likely that the changes to values did not impact any resources. But, you’d still see the diff in the
Chart
resource, though, I think