Skip to content

Commit

Permalink
Add argo rollout extension
Browse files Browse the repository at this point in the history
  • Loading branch information
mebagel authored Nov 13, 2024
1 parent 309c8c1 commit 6049331
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions argocd/overlays/argocd-server-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,28 @@ spec:
template:
spec:
affinity: null
initContainers:
- name: rollout-extension
image: quay.io/argoprojlabs/argocd-extension-installer:v0.0.1
env:
- name: EXTENSION_URL
value: https://github.com/argoproj-labs/rollout-extension/releases/download/v0.3.4/extension.tar
volumeMounts:
- name: extensions
mountPath: /tmp/extensions/
containers:
- name: argocd-server
imagePullPolicy: IfNotPresent
volumeMounts:
- name: extensions
mountPath: /tmp/extensions/
args:
- /usr/local/bin/argocd-server
- --insecure
- --staticassets
- /shared/app
- --redis
- "argocd-redis-ha-haproxy:6379"
volumes:
- name: extensions
emptyDir: {}

0 comments on commit 6049331

Please sign in to comment.