Tuesday, May 9, 2023

Fix - WARNING: Kubernetes configuration file is group-readable. This is insecure. Location: .kube/config

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

chmod 600 ~/.kube/config

No comments:

Post a Comment

How to integrate SonarQube with GitLab CICD Pipeline | SonarQube Integration with GitLab CICD | Automate Code Scan using SonarQube In GitLab CICD

  Please find steps for integrating SonarQube with GitLab CICD Pre-requisites: Make sure SonarQube is up and running Make sure Java Project ...