Packer.Images/ansible/roles/metacluster/tasks/components.yml
Danny Bessems 4a5f390ae1
Some checks failed
continuous-integration/drone/push Build is failing
Fix linting errors
2022-06-25 00:54:36 +02:00

14 lines
341 B
YAML

- name: Create folder structure(s)
ansible.builtin.file:
path: "{{ item }}"
state: directory
loop:
- /opt/metacluster/components/harbor
- name: Add helm repositories
kubernetes.core.helm_repository:
name: "{{ item.name }}"
repo_url: "{{ item.url }}"
state: present
loop: "{{ components.helm_repositories }}"