Hi all! I'm having an issue with helm chart modul...
# general
a
Hi all! I'm having an issue with helm chart module and was wondering if this is a known issue or is there a workaround. Basically, I get
Copy code
error: YAMLException: bad indentation of a mapping entry at line 47, column 9:
                - 1.1.1.1
                ^
with the
values
config below.
Copy code
// `<https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-dns-config>`
new k8s.helm.v2.Chart("certmanager",
            {
                ...
                values: {
                    podDnsPolicy: "None",
                    podDnsConfig: {
                        nameservers: ["1.1.1.1", "8.8.8.8"]
                    }
                }
            },
            { providers: { kubernetes: this.k8sProvider } });
This seems to be about underlying yaml parser of the module or I'm trying to set the values in a wrong way and missing something very basic here. Has anyone bumped into anything similar before?