does anyone have a fix for this deployment issue? ...
# kubernetes
s
does anyone have a fix for this deployment issue? I have been seeing it for a week plus and I have not found a solution. I'm running version 1.28. fixed in latest release
Copy code
Diagnostics:
  kubernetes:helm.sh/v3:Release (cert-manager):
    error: kubernetes:helm.sh/v3:Release resource 'cert-manager': property chart value {cert-manager} has a problem: chart requires kubeVersion: >= 1.22.0-0 which is incompatible with Kubernetes v1.20.0; check the chart name and repository configuration.
Copy code
const certManagerNamespace = new k8s.core.v1.Namespace(
  'cert-manager',
  { metadata: { name: 'cert-manager' } },
  { provider: k8sProvider, dependsOn: [eksCluster, eksNodeGroup] },
);

export const certManagerRelease = new helm.v3.Release(
  'cert-manager',
  {
    namespace: certManagerNamespace.metadata.name,
    chart: 'cert-manager',
    repositoryOpts: { repo: '<https://charts.jetstack.io>' },
    values: parseYamlFromFile('charts/cert-manager/cert-manager-op-dev.yml'),
  },
  { provider: k8sProvider, dependsOn: [certManagerNamespace] }
);
d
Does this still happen on v4.5.4?
s
I have not checked but it just happened
which version should I check?
d
there was a fix for the Release resource in v4.5.4 that should fix this
s
I'll double check brew one sec
d
This would be an npm dependency for
@pulumi/kubernetes
s
derp. checking there too.
that definitely fixed it! tyvm!