chilly-photographer-60932
02/13/2019, 8:06 PMk8s
service spun using helm
chart and pulumi. The helm chart does not expose loadBalancerSourceRanges
for the service definition. We would like to update the service with loadBalancerSourceRanges
. What is the best way to do it? It is similar to kubectl edit service
white-balloon-205
transformations
option you can pass on a new Chart
in Pulumi to get a chance to modify any of the resources created by the Helm chart prior to deploying them with Pulumi.
It's a bit of a blunt hammer, but useful for exactly this sort of scenario. See https://pulumi.io/reference/pkg/nodejs/@pulumi/kubernetes/v2/#BaseChartOpts-transformations.
The other alternative - common in the Helm world - would be forking the chart to expose this option.chilly-photographer-60932
02/13/2019, 8:10 PM1.1
release.gorgeous-egg-16927
02/13/2019, 8:13 PMchilly-photographer-60932
02/13/2019, 11:39 PM