Replies: 4 comments
-
I have more or less the same setup ... cert-manager:
enabled: false
nginx:
enabled: false
metrics-server:
enabled: false
app:
ingress:
enabled: false $k get pods,svc,ingress -n kubernetes-dashboard NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE I can only got something working with "kubectl proxy" and then I can open But then the page keeps blank and I see a lot of console errors like I believe this is because of the split between web and api services. No glue how to handle this?! :-( |
Beta Was this translation helpful? Give feedback.
-
i get the same problem. I'm trying to use it with |
Beta Was this translation helpful? Give feedback.
-
@Stolz can you change this to an issue instead of a Q&A? |
Beta Was this translation helpful? Give feedback.
-
Same problem here |
Beta Was this translation helpful? Give feedback.
-
I've installed the dashboard using the latest official helm chart version (7.0.0-alpha1) with these
values.yaml
fileAs you can see, metrics and ingress are disabled. I don't have an ingress controller installed in my cluster yet but according to the official documentation I should still be able to access with
kubectl port-forward
.The pods and services seem to be successfully created
But when I try to access with port-forward I get a 404 error
I have tried using https://127.0.0.1:8443, https://127.0.0.1:8443/, https://127.0.0.1:8443/ui, https://127.0.0.1:8443/ui/, https://127.0.0.1:8443/web, https://127.0.0.1:8443/web/, https://127.0.0.1:8443/dashboard, https://127.0.0.1:8443/dashboard/ but they all return 404.
I have also tried with all 8 possible unique combinations of the boolean values listed below, but they all return 404.
I have also tried using port-forward
svc/kubernetes-dashboard-nginx-controller-admission
instead ofsvc/kubernetes-dashboard-nginx-controller
but I still get 404.Any suggestion of what could be wrong with my approach?
Beta Was this translation helpful? Give feedback.
All reactions