https://pulumi.com logo
Title
v

victorious-dusk-75271

08/21/2022, 9:41 PM
whats the right way to pass nested value to helm.v3.Release? i am trying to pass
serviceAccount.create: false
but its not picking up https://github.com/aws/eks-charts/tree/master/stable/aws-load-balancer-controller i have tried both { serviceAccount: { create: false }} and 'serviceAccount.create': false
b

bumpy-laptop-30846

08/22/2022, 7:49 AM
Try something like this:
const nginx = new k8s.helm.v3.Chart(
  'nginx',
  {
    namespace: 'default',
    chart: 'ingress-nginx',
    version: '4.2.1',
    fetchOpts: { repo: '<https://kubernetes.github.io/ingress-nginx/>' },
    values: {
      controller: {
        publishService: { enabled: true },