Skip to content
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.

Commit

Permalink
Merge pull request #11 from OctopusDeployLabs/add-argo-cd
Browse files Browse the repository at this point in the history
Add ArgoCD CLI
  • Loading branch information
harrisonmeister authored Aug 14, 2023
2 parents 7ba80e5 + e532917 commit f158d10
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ubuntu-2004/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ RUN curl -fsSL https://packages.cloud.google.com/apt/doc/apt-key.gpg | gpg --dea
# Install git
RUN apt-get update && apt-get install -y git

# Install Argo CD
RUN 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

# Get latest Helm v3
RUN wget --quiet -O - https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash

Expand Down
5 changes: 5 additions & 0 deletions ubuntu-2204/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ RUN curl -fsSL https://packages.cloud.google.com/apt/doc/apt-key.gpg | gpg --dea
# Install git
RUN apt-get update && apt-get install -y git

# Install Argo CD
RUN 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

# Get latest Helm v3
RUN wget --quiet -O - https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash

Expand Down
3 changes: 3 additions & 0 deletions windows-2019/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ RUN choco install eksctl -y --no-progress

RUN choco install awscli -y --no-progress

# Get Argo
RUN choco install argocd-cli -y --no-progress

# Install Azure CLI
RUN choco install azure-cli -y --no-progress

Expand Down

0 comments on commit f158d10

Please sign in to comment.