Browse Source

[argocd] update argocd to v2.5.5 (#9604)

pull/9605/head
Mohamed Zaian 1 year ago
committed by GitHub
parent
commit
438da0c8e6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions
  1. 2
      README.md
  2. 2
      inventory/sample/group_vars/k8s_cluster/addons.yml
  3. 2
      roles/kubernetes-apps/argocd/defaults/main.yml
  4. 2
      roles/kubernetes-apps/argocd/tasks/main.yml

2
README.md

@ -160,7 +160,7 @@ Note: Upstart/SysV init based OS types are not supported.
- [coredns](https://github.com/coredns/coredns) v1.9.3
- [ingress-nginx](https://github.com/kubernetes/ingress-nginx) v1.5.1
- [krew](https://github.com/kubernetes-sigs/krew) v0.4.3
- [argocd](https://argoproj.github.io/) v2.4.16
- [argocd](https://argoproj.github.io/) v2.5.5
- [helm](https://helm.sh/) v3.9.4
- [metallb](https://metallb.universe.tf/) v0.12.1
- [registry](https://github.com/distribution/distribution) v2.8.1

2
inventory/sample/group_vars/k8s_cluster/addons.yml

@ -212,7 +212,7 @@ metallb_speaker_enabled: "{{ metallb_enabled }}"
# my_asn: 4200000000
argocd_enabled: false
# argocd_version: v2.4.16
# argocd_version: v2.5.5
# argocd_namespace: argocd
# Default password:
# - https://argo-cd.readthedocs.io/en/stable/getting_started/#4-login-using-the-cli

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

@ -1,5 +1,5 @@
---
argocd_enabled: false
argocd_version: v2.4.16
argocd_version: v2.5.5
argocd_namespace: argocd
# argocd_admin_password:

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

@ -2,7 +2,7 @@
- name: Kubernetes Apps | Install yq
become: yes
get_url:
url: "https://github.com/mikefarah/yq/releases/download/v4.27.5/yq_linux_{{ host_architecture }}"
url: "https://github.com/mikefarah/yq/releases/download/v4.30.6/yq_linux_{{ host_architecture }}"
dest: "{{ bin_dir }}/yq"
mode: '0755'

Loading…
Cancel
Save