From f0afa3b8361cf50c72eca05d0ad292a48df9c660 Mon Sep 17 00:00:00 2001 From: Marvin Gajek Date: Wed, 24 Apr 2024 20:34:58 +0200 Subject: [PATCH] remove redundant installations --- .devcontainer/scripts/install-dependencies.sh | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.devcontainer/scripts/install-dependencies.sh b/.devcontainer/scripts/install-dependencies.sh index 16949d7..11dead3 100644 --- a/.devcontainer/scripts/install-dependencies.sh +++ b/.devcontainer/scripts/install-dependencies.sh @@ -5,14 +5,6 @@ set -euo pipefail apt-get update apt-get install -y curl -# Flux CLI. See: https://fluxcd.io/flux/cmd/ -curl -s https://fluxcd.io/install.sh | FLUX_VERSION=2.0.0 bash - -# ArgoCD CLI. See: https://argo-cd.readthedocs.io/en/stable/cli_installation/ -curl -sSL -o argocd-linux-amd64 https://github.com/argoproj/argo-cd/releases/latest/download/argocd-linux-amd64 -install -m 555 argocd-linux-amd64 /usr/local/bin/argocd -rm argocd-linux-amd64 - # kubectl curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl chmod +x ./kubectl @@ -23,8 +15,4 @@ curl -LO https://get.helm.sh/helm-v3.14.3-linux-amd64.tar.gz tar -zxvf helm-v3.14.3-linux-amd64.tar.gz rm helm-v3.14.3-linux-amd64.tar.gz mv linux-amd64/helm /usr/local/bin/helm -rm -rf linux-amd64 - -# Kustomize -curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash -mv kustomize /usr/local/bin \ No newline at end of file +rm -rf linux-amd64 \ No newline at end of file