Encryption and major changes

This commit is contained in:
2024-09-28 23:12:19 +02:00
parent 1f060541c3
commit 6248286ad2
159 changed files with 153 additions and 129 deletions
+3 -3
View File
@@ -53,7 +53,7 @@
- name: Download kubectl
become: true
ansible.builtin.get_url:
url: "https://dl.k8s.io/release/v{{ kubectl_version }}/bin/linux/amd64/kubectl"
url: "https://dl.k8s.io/release/v{{ microk8s_kubectl_version }}/bin/linux/amd64/kubectl"
dest: "/usr/local/bin/kubectl"
mode: "0755"
owner: "root"
@@ -78,7 +78,7 @@
- name: "Setup local user access to k8s - {{ item.username }}"
ansible.builtin.include_tasks: "setupenv/main.yml"
loop: "{{ k8s_users }}"
when: k8s_users is defined
loop: "{{ microk8s_users }}"
when: microk8s_users is defined
tags:
- k8s::users