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

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

View File

@ -1,2 +1,4 @@
collections:
- ansible.utils
- community.general
- kubernetes.core

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:

View File

@ -7,25 +7,33 @@ platform:
url: https://charts.longhorn.io
- name: harbor
url: https://helm.goharbor.io
- name: argo
url: https://argoproj.github.io/argo-helm
components:
longhorn:
version: 1.3.0
helm_chart: longhorn/longhorn
parse_logic: yq e '.. | select(has("repository")) | .repository + ":" + .tag'
helm:
version: 1.3.0
chart: longhorn/longhorn
parse_logic: yq e '.. | select(has("repository")) | .repository + ":" + .tag'
harbor:
version: 1.9.1 # (= Harbor v2.5.1)
helm_chart: harbor/harbor
parse_logic: yq e '.. | select(has("repository")) | .repository + ":" + .tag'
helm:
version: 1.9.1 # (= Harbor v2.5.1)
chart: harbor/harbor
parse_logic: yq e '.. | select(has("repository")) | .repository + ":" + .tag'
# argocd:
# version:
argocd:
helm:
version: 4.9.7 # (= ArgoCD v2.4.2)
chart: argo/argo-cd
parse_logic: yq e '.. | select(has("repository")) | .repository + ":" + (.tag // "v2.4.2")'
dependencies:
ansible_galaxy_collections:
- ansible.utils
- community.general
- kubernetes.core