Kubernetes dashboard
Documentation
Exercise
Success criteria
- Display the dashboard in your browser
- Login to the dashboard
- Switch to
kube-system
namespace and look at the different Kubernetes objects
Help
- Create a user (ref. Creating sample user):
dashboard-adminuser.yaml
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: admin-user
namespace: kubernetes-dashboard
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: admin-user
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: cluster-admin
subjects:
- kind: ServiceAccount
name: admin-user
namespace: kubernetes-dashboard
Knowledge assessment
- namespace
- pod
- replicaset
- job
- deployment
- cronjob
- daemonset
Next
Jump to next section: 4. Deployments