Skip to content

Commit 060210d

Browse files
committed
roles/kubernetes-apps/argocd/tasks/main.yml : sha256 to checksum
Fixes #12223
1 parent c7c3d2b commit 060210d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

roles/kubernetes-apps/argocd/defaults/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ argocd_version: 2.14.5
44
argocd_namespace: argocd
55
# argocd_admin_password:
66
argocd_install_url: "https://raw.githubusercontent.com/argoproj/argo-cd/v{{ argocd_version }}/manifests/install.yaml"
7+
argocd_install_checksum: "sha256:247ccda29c9faac4e0c8598680f5ebefff9911e957e3aeaf838eb4bbf455f2f4"

roles/kubernetes-apps/argocd/tasks/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
file: argocd-install.yml
2424
namespace: "{{ argocd_namespace }}"
2525
url: "{{ argocd_install_url }}"
26+
checksum: "{{ argocd_install_checksum }}"
2627
when:
2728
- "inventory_hostname == groups['kube_control_plane'][0]"
2829

@@ -37,7 +38,7 @@
3738
unarchive: false
3839
owner: "root"
3940
mode: "0644"
40-
sha256: ""
41+
checksum: "{{ item.checksum }}"
4142
download: "{{ download_defaults | combine(download_argocd) }}"
4243
with_items: "{{ argocd_templates | selectattr('url', 'defined') | list }}"
4344
loop_control:

0 commit comments

Comments
 (0)