feat: update control plane role

This commit is contained in:
2026-06-30 00:25:44 +01:00
parent 6a127588f0
commit 010f0657b5
4 changed files with 64 additions and 35 deletions
@@ -0,0 +1,18 @@
- name: Add Helm APT repository
ansible.builtin.deb822_repository:
name: helm
types: deb
uris: https://packages.buildkite.com/helm-linux/helm-debian/any/
suites: any
components: main
signed_by: https://packages.buildkite.com/helm-linux/helm-debian/gpgkey
state: present
- name: Install Kubernetes Tools
ansible.builtin.apt:
pkg:
- kubectl
- helm
state: present
update_cache: true