Skip to content

Commit

Permalink
Merge pull request #1939 from LinuxSuRen/argocd-image-list
Browse files Browse the repository at this point in the history
Add image list of the Argo CD
  • Loading branch information
ks-ci-bot committed Apr 15, 2022
2 parents 5f7f177 + 64742f0 commit 60e11c2
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions roles/download/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,16 @@ s2ioperator_tag: "v3.2.1"
s2irun_tag: "v3.2.0"
s2itemplates_tag: "v3.2.0"

#argocd
argocd_repo: "{{ base_repo | default('quay.io/') }}{{ namespace_override | default('argoproj') }}/argocd"
argocd_tag: v2.3.3
argocd_applicationset_repo: "{{ base_repo | default('quay.io/') }}{{ namespace_override | default('argoproj') }}/argocd-applicationset"
argocd_applicationset_tag: v0.4.1
argocd_dex_repo: "{{ base_repo | default('ghcr.io/') }}{{ namespace_override | default('dexidp') }}/dex"
argocd_dex_tag: v2.30.2
argocd_redis_repo: "{{ base_repo }}{{ namespace_override }}/redis"
argocd_redis_tag: 6.2.6-alpine

#ks-monitor:
configmap_reload_repo: "{{ base_repo }}{{ namespace_override | default('jimmidyson') }}/configmap-reload"
configmap_reload_tag: v0.5.0
Expand Down Expand Up @@ -571,6 +581,30 @@ images:
sha256: "{{ python_27_centos7_checksum|default(None) }}"
group: "kubesphere-devops-images"

argocd_repo:
repo: "{{ argocd_repo }}"
tag: "{{ argocd_repo_tag }}"
sha256: "{{ argocd_checksum|default(None) }}"
group: "kubesphere-devops-images"

argocd_applicationset_repo:
repo: "{{ argocd_applicationset_repo }}"
tag: "{{ argocd_applicationset_tag }}"
sha256: "{{ argocd_applicationset_checksum|default(None) }}"
group: "kubesphere-devops-images"

argocd_dex_repo:
repo: "{{ argocd_dex_repo }}"
tag: "{{ argocd_dex_tag }}"
sha256: "{{ argocd_dex_checksum|default(None) }}"
group: "kubesphere-devops-images"

argocd_redis_repo:
repo: "{{ argocd_redis_repo }}"
tag: "{{ argocd_redis_tag }}"
sha256: "{{ argocd_redis_checksum|default(None) }}"
group: "kubesphere-devops-images"

configmap_reload:
repo: "{{ configmap_reload_repo }}"
tag: "{{ configmap_reload_tag }}"
Expand Down

0 comments on commit 60e11c2

Please sign in to comment.