Kubernetes warning while installing the helm chart

Hi all, while installing the helm chart I get the following warning:

WARNING: Kubernetes configuration file is group-readable. This is insecure. Location: /var/snap/microk8s/2551/credentials/client.config

I was wondering if anyone knows if this is a real problem or something we can ignore?

You can ignore it.

If you want to fix this warning, you need to use chmod to make ~/.kube/config only readable by you:

chmod 600 ~/.kube/config

Read more here.

2 Likes

Thank you @ChrisRahme

1 Like