Kubernetes EKS AWS dashboard not working
I have configured dashboard as mention in document but it is working as expected .
document https://docs.aws.amazon.com/eks/latest/userguide/dashboard-tutorial.html
Solution:-
Add Loadbalancer configuration in dashboard service file.
# ------------------- Dashboard Service ------------------- #
kind: Service
apiVersion: v1
metadata:
labels:
k8s-app: kubernetes-dashboard
name: kubernetes-dashboard
namespace: kube-system
spec:
ports:
- port: 443
targetPort: 8443
selector:
k8s-app: kubernetes-dashboard
type: LoadBalancer
I have configured dashboard as mention in document but it is working as expected .
document https://docs.aws.amazon.com/eks/latest/userguide/dashboard-tutorial.html
Solution:-
Add Loadbalancer configuration in dashboard service file.
# ------------------- Dashboard Service ------------------- #
kind: Service
apiVersion: v1
metadata:
labels:
k8s-app: kubernetes-dashboard
name: kubernetes-dashboard
namespace: kube-system
spec:
ports:
- port: 443
targetPort: 8443
selector:
k8s-app: kubernetes-dashboard
type: LoadBalancer
Comments
Post a Comment