good thing is i can reproduce it fairly easily, i'...
# kubernetes
i
good thing is i can reproduce it fairly easily, i'll whittle down the values now to find the minimum set to reproduce and open up a github issue but im not feeling good about the number of pulumi + helm bugs im encountering 😞
Copy code
import * as k8s from '@pulumi/kubernetes'

const disabled = {
  enabled: false,
  external: {
    default: {
      enabled: false,
    }
  }
}

new k8s.helm.v3.Release(
  'redpanda',
  {
    repositoryOpts: {
      repo: '<https://charts.redpanda.com>',
    },
    chart: 'redpanda',
    values: {
      statefulset: {
        replicas: 1,
      },
      tls: {
        enabled: false,
      },
      listeners: {
        kafka: {
          external: {
            default: {
              advertisedPorts: [31094]
            }
          }
        },
        admin: disabled,
        schemaRegistry: disabled,
        http: disabled,
      },
    },
  },
)