Hello everybody, i have a small issue deploying a...
# general
r
Hello everybody, i have a small issue deploying a helm chart to kubernetes and changing some config values. According to the helm chart documentation default components can be removed setting them to
null
. I have tried several ways to set the config to
null
but I cant manage to do it and then the default config is used. Is this somehow possible?
Copy code
_, err := s.NewChartRelease(otelCollectorChart, namespace.Metadata.Elem().Name(), pulumi.Map{
        "fullnameOverride": pulumi.String("otel-collector"),
        "mode":             pulumi.String("deployment"),
        "config": pulumi.Map{
            "receivers": pulumi.Map{
                "prometheus": nil,
            }}})
In this example I want to set the "prometheus" config to null