[Error] Kubernetes configuration file is group-readable, world-readable
[Error] Kubernetes configuration file is group-readable, world-readable
아래와 같이 Error
1
2
WARNING: Kubernetes configuration file is group-readable. This is insecure. Location: /root/.kube/config
WARNING: Kubernetes configuration file is world-readable. This is insecure. Location: /root/.kube/config
해결 방법
1
2
sudo chmod o-r ~/.kube/config
sudo chmod g-r ~/.kube/config
This post is licensed under CC BY 4.0 by the author.