Refactor git repo creation;Housekeeping
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-03-28 22:31:11 +02:00
parent cd5fa89a0d
commit eb2f491f72
3 changed files with 21 additions and 6 deletions

View File

@ -1,10 +1,17 @@
- name: Aggregate helm charts from filesystem
ansible.builtin.find:
path: /opt/workloadcluster/helm-charts
file_type: directory
recurse: false
register: helm_charts
- name: Create hard-links to populate new git-repository
ansible.builtin.shell:
cmd: >-
cp -lr /opt/metacluster/helm-charts/{{ item.key }}/ /opt/workloadcluster/git-repositories/gitops/
loop: "{{ lookup('ansible.builtin.dict', downstream.helm_charts) }}"
cp -lr {{ item.path }}/ /opt/workloadcluster/git-repositories/gitops/
loop: "{{ helm_charts.files }}"
loop_control:
label: "{{ item.key }}"
label: "{{ item.path | basename }}"
- name: Initialize/Push git repository
ansible.builtin.shell:

View File

@ -38,7 +38,7 @@
community.vmware.vmware_guest_disk:
name: "{{ ova_deploy.instance.hw_name }}"
disk:
- size: 1Gb
- size: 1Mb
scsi_controller: 1
scsi_type: paravirtual
unit_number: 0