This message was deleted.
# kubernetes
s
This message was deleted.
v
Have you tried passing
customTimeouts
through to the helm release resource via the component resource arguments?
here's a code snippet from something that we do:
Copy code
const chart = new k8s.helm.v3.Release(
      `opentelemetry-operator`,
      {
        name: 'opentelemetry-operator',
        chart: 'opentelemetry-operator',
        namespace: namespace.metadata.name,
        createNamespace: false,
        version: '0.27.0',
        values: {
          admissionWebhooks: {
            certManager: {
              enabled: false,
            },
          },
        },
        repositoryOpts: {
          repo: '<https://open-telemetry.github.io/opentelemetry-helm-charts>',
        },
      },
      {
        provider,
        customTimeouts: { create: '2m' },
      }
    );
that will set the timeout in the pulumi program rather than at the chart level, hopefully that helps 🙂
p
Yes that seemed to work, thanks!
👍 1