Files
homelab-infrastructure/ansible/roles/kubernetes_control_plane/tasks/tools.yaml
T

19 lines
438 B
YAML

- 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