Add missing galaxy collection;Fix logic to parse charts for container images;Add ArgoCD
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2022-06-26 21:20:16 +02:00
parent 662e8984c3
commit c58ede04c4
5 changed files with 21 additions and 12 deletions

View File

@ -4,7 +4,7 @@
state: directory
register: archive
- name: Download, extract & install archived static binary
- name: Download & extract archived static binary
ansible.builtin.unarchive:
src: "{{ item.url }}"
dest: "{{ archive.path }}"

View File

@ -16,4 +16,3 @@
until: api_readycheck.apiVersion is defined
retries: 3
delay: 30

View File

@ -16,7 +16,7 @@
- name: Fetch helm charts
ansible.builtin.command:
cmd: helm fetch {{ item.value.helm_chart }} --untar --version {{ item.value.version }}
cmd: helm fetch {{ item.value.helm.chart }} --untar --version {{ item.value.helm.version }}
chdir: /opt/metacluster/helm-charts
loop: "{{ lookup('ansible.builtin.dict', components) }}"
loop_control:
@ -24,7 +24,7 @@
- name: Parse helm charts for container images
ansible.builtin.command:
cmd: "{{ item.value.parse_logic }} /opt/metacluster/helm-charts/{{ item.key }}/values.yaml"
cmd: "{{ item.value.helm.parse_logic }} /opt/metacluster/helm-charts/{{ item.key }}/values.yaml"
register: containerimages
loop: "{{ lookup('ansible.builtin.dict', components) }}"
loop_control: