allow change argocd url (#10176)

pull/10184/head
Samuel Liu 2023-06-19 10:18:20 +08:00 committed by GitHub
parent 141064c443
commit d296adcd65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -3,3 +3,4 @@ argocd_enabled: false
argocd_version: v2.6.7
argocd_namespace: argocd
# argocd_admin_password:
argocd_install_url: "https://raw.githubusercontent.com/argoproj/argo-cd/{{ argocd_version }}/manifests/install.yaml"

View File

@ -22,7 +22,7 @@
- name: install
file: argocd-install.yml
namespace: "{{ argocd_namespace }}"
url: "https://raw.githubusercontent.com/argoproj/argo-cd/{{ argocd_version }}/manifests/install.yaml"
url: "{{ argocd_install_url }}"
when:
- "inventory_hostname == groups['kube_control_plane'][0]"

View File

@ -2,6 +2,6 @@
apiVersion: v1
kind: Namespace
metadata:
name: {{argocd_namespace}}
name: {{ argocd_namespace }}
labels:
app: argocd