quick argo install
This commit is contained in:
parent
1f9947ca8d
commit
666460e042
@ -36,3 +36,17 @@
|
|||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
name: kubectl
|
name: kubectl
|
||||||
update_cache: true
|
update_cache: true
|
||||||
|
|
||||||
|
|
||||||
|
- name: does argocd exists
|
||||||
|
ansible.builtin.stat:
|
||||||
|
path: /usr/local/bin/argocd
|
||||||
|
register: st
|
||||||
|
- name: install argocd
|
||||||
|
ansible.builtin.shell: |
|
||||||
|
VERSION=$(curl -L -s https://raw.githubusercontent.com/argoproj/argo-cd/stable/VERSION)
|
||||||
|
curl -sSL -o argocd-linux-amd64 https://github.com/argoproj/argo-cd/releases/download/v$VERSION/argocd-linux-amd64
|
||||||
|
sudo install -m 555 argocd-linux-amd64 /usr/local/bin/argocd
|
||||||
|
rm argocd-linux-amd64
|
||||||
|
when: st.stat.exists != true
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user