This message was deleted.
s
This message was deleted.
e
for now ive needed to downgrade eks to 1.15
nevermind, ive figured the issue is a too low version of
kubernetes-dashboard
🙄 fix was using the following:
Copy code
k8s_dash = helm.Chart(
    "kubernetes-dashboard",
    config=helm.ChartOpts(
        repo="kubernetes-dashboard",
        chart="kubernetes-dashboard",
        version="2.7.1",
        namespace="kube-system",
    ),
    opts=ResourceOptions(providers={"kubernetes": cluster_provider}),
)
after executing:
Copy code
helm repo add kubernetes-dashboard <https://kubernetes.github.io/dashboard/>
helm repo update