Fix linting errors
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Danny Bessems 2022-06-25 00:54:36 +02:00
parent e0a5b5a5da
commit 4a5f390ae1
3 changed files with 14 additions and 15 deletions

View File

@ -21,17 +21,16 @@
- block:
- name: Download Helm binary
ansible.builtin.unarchive:
src: https://get.helm.sh/helm-{{ helm.version }}-linux-amd64.tar.gz
dest: /opt/metacluster/dependencies/helm
- name: Install Helm binary
ansible.builtin.copy:
src: /opt/metacluster/dependencies/helm/helm
dest: /usr/local/bin/helm
remote_src: yes
owner: root
group: root
mode: 0755
- name: Download Helm binary
ansible.builtin.unarchive:
src: https://get.helm.sh/helm-{{ helm.version }}-linux-amd64.tar.gz
dest: /opt/metacluster/dependencies/helm
- name: Install Helm binary
ansible.builtin.copy:
src: /opt/metacluster/dependencies/helm/helm
dest: /usr/local/bin/helm
remote_src: yes
owner: root
group: root
mode: 0755

View File

@ -7,7 +7,7 @@
- name: Add helm repositories
kubernetes.core.helm_repository:
name: "{{ item.name }}
name: "{{ item.name }}"
repo_url: "{{ item.url }}"
state: present
loop: "{{ components.helm_repositories }}"

View File

@ -1,4 +1,4 @@
- name: Create folder structures
- name: Create folder structure(s)
ansible.builtin.file:
path: "{{ item }}"
state: directory