hello - would love some guidance on how to make th...
# python
f
hello - would love some guidance on how to make this (kubernetes-related) situation work - i have a Deployment that requires the ClusterIP of a Service that is deployed by a Helm Chart. I have to get the Service by its name (any alternatives to this??) and so, i have to add a
depends_on
to the Helm Chart. I’ve tried using both
Chart.ready
and the
Chart.resources.apply(lambda resources: list(resources.values()))
workaround, but in both I get a
TypeError: unhashable type: 'list'
. Any ideas on how to make this work?