Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add image list of the Argo CD #1939

Merged
merged 1 commit into from
Apr 15, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can argocd use the same redis as kubesphere?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure about this. I guess more tests are needed if we let them use the same image version.

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