From ced5b64be185e0e01e323998d97e2c73f0a7a082 Mon Sep 17 00:00:00 2001 From: Paul Harkink Date: Sat, 28 Feb 2026 16:17:35 +0100 Subject: [PATCH] fix(vagrantfile): set kubeconfig permissions to 600 to suppress Helm warnings --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index 61dfbf6..c22f39d 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -52,6 +52,7 @@ $provision = <<-SHELL # Point server to host-only IP so it works outside the VM too sed -i "s|127.0.0.1|#{HOST_ONLY_IP}|g" /home/vagrant/.kube/config chown -R vagrant:vagrant /home/vagrant/.kube + chmod 600 /home/vagrant/.kube/config # Also export KUBECONFIG in .bashrc echo 'export KUBECONFIG=/home/vagrant/.kube/config' >> /home/vagrant/.bashrc