Setup advanced monitoring

Elevate your cluster monitoring capabilities with our advanced setup! Connect to the cluster and effortlessly deploy the Kubernetes dashboard using a single command. Explore the provided link for further insights into enhancing your monitoring experience. Stay in control and gain valuable insights into your Kubernetes environment with ease.

  1. Connect to the cluster.

pageConnect to a cluster
  1. Deploy the Kubernetes dashboard with the following command.

$ kubectl --kubeconfig=k8s-development-1_kubeconfig.txt apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.7.0/aio/deploy/recommended.yaml
namespace/kubernetes-dashboard created
serviceaccount/kubernetes-dashboard created
service/kubernetes-dashboard created
secret/kubernetes-dashboard-certs created
secret/kubernetes-dashboard-csrf created
secret/kubernetes-dashboard-key-holder created
configmap/kubernetes-dashboard-settings created
role.rbac.authorization.k8s.io/kubernetes-dashboard created
clusterrole.rbac.authorization.k8s.io/kubernetes-dashboard created
rolebinding.rbac.authorization.k8s.io/kubernetes-dashboard created
clusterrolebinding.rbac.authorization.k8s.io/kubernetes-dashboard created
deployment.apps/kubernetes-dashboard created
service/dashboard-metrics-scraper created
deployment.apps/dashboard-metrics-scraper created
$ kubectl --kubeconfig=k8s-development-1_kubeconfig.txt proxy
Starting to serve on 127.0.0.1:8001

If you want to learn more, check: https://kubernetes.io/docs/tasks/access-application-cluster/web-ui-dashboard/

Last updated