- Home
- All questions
- Question 59
CKA study material · question 59 of 1000
Which two steps give a non-root user kubectl access after kubeadm init? Choose two.
Show the answer
Answer: B. Copy /etc/kubernetes/admin.conf to $HOME/.kube/config
C. Take ownership of the copied file
kubeadm's own output tells the user to copy admin.conf into $HOME/.kube/config and chown it.
Source: Creating a cluster with kubeadm (Kubernetes) — Initializing your control-plane node