From 041f45df9ae666929b8afcdc3632ba6b04dbb1f5 Mon Sep 17 00:00:00 2001 From: Peter Kurfer Date: Mon, 20 Jan 2025 18:11:28 +0100 Subject: [PATCH] feat(act): add ArgoCD CLI & kustomize --- act_runtime/Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/act_runtime/Dockerfile b/act_runtime/Dockerfile index 487c189..349af4b 100644 --- a/act_runtime/Dockerfile +++ b/act_runtime/Dockerfile @@ -56,3 +56,11 @@ RUN --mount=type=cache,target=/tmp \ fi && \ unzip -o /tmp/awscliv2.zip -d /tmp && \ /tmp/aws/install + +# ArgoCD CLI +RUN curl -sSL -o /usr/local/bin/argocd https://github.com/argoproj/argo-cd/releases/latest/download/argocd-linux-arm64 && \ + chmod +x /usr/local/bin/argocd && \ + argocd version --client + +# kustomize +RUN curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash -s -- /usr/local/bin