feat(act): add ArgoCD CLI & kustomize
Some checks failed
act_runtime / build_images (node:20-bookworm-slim, ubuntu-latest) (push) Successful in 5m6s
Renovate / renovate (push) Successful in 1m17s
Image builds / build_images (caddy) (push) Successful in 16s
act_runtime / build_images (node:20-bullseye-slim, ubuntu-latest) (push) Successful in 5m31s
Image builds / build_images (renovate) (push) Successful in 2m42s
act_runtime / build_images (node:20-bullseye-slim, ubuntu-latest-amd64) (push) Failing after 12m11s
act_runtime / build_images (node:20-bookworm-slim, ubuntu-latest-amd64) (push) Failing after 14m10s

This commit is contained in:
Peter 2025-01-20 18:11:28 +01:00
parent 9d9453b003
commit 041f45df9a
Signed by: prskr
GPG key ID: F56BED6903BC5E37

View file

@ -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