allow change argocd url (#10176)
parent
141064c443
commit
d296adcd65
|
@ -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"
|
||||
|
|
|
@ -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]"
|
||||
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
apiVersion: v1
|
||||
kind: Namespace
|
||||
metadata:
|
||||
name: {{argocd_namespace}}
|
||||
name: {{ argocd_namespace }}
|
||||
labels:
|
||||
app: argocd
|
||||
|
|
Loading…
Reference in New Issue