From 44e3d415df74bcd664054844cb031f47f56359e9 Mon Sep 17 00:00:00 2001 From: Simon Larsen Date: Sat, 30 Dec 2023 17:41:14 +0000 Subject: [PATCH] Update index.sh script in HelmChart/Tests This commit updates the index.sh script in the HelmChart/Tests directory. The changes include removing the command to add the current user to the microk8s group and updating the aliases for kubectl and helm. --- HelmChart/Tests/index.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/HelmChart/Tests/index.sh b/HelmChart/Tests/index.sh index df4d5487d3..9529ce288c 100644 --- a/HelmChart/Tests/index.sh +++ b/HelmChart/Tests/index.sh @@ -2,10 +2,6 @@ sudo snap install microk8s --classic sudo microk8s status --wait-ready - -# Add current user to microk8s group -sudo microk8s kubectl config view --raw > ~/.kube/config - # Add kubectl and helm aliases sudo echo "alias kubectl='microk8s kubectl'" >> ~/.bash_aliases sudo echo "alias helm='microk8s helm3'" >> ~/.bash_aliases