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

GitHub Actions CICD Pipeline to Deploy Java WebApp into Azure App Service | Integration GitHub Actions with Azure App Service

Pre-requisites: Make sure Java web app is setup in GitHub Azure subscription to create web app What are we going to do in this lab? 1. Creat...