Skip to content

Commit

Permalink
add new dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Anderson committed Mar 5, 2024
1 parent 9700f19 commit 01314ea
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions roles/kubectl/tasks/debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@
# code: language=ansible
- name: Kubectl | Debian | Make sure apt-transport-https is installed
ansible.builtin.apt:
name: apt-transport-https
name:
- apt-transport-https
- ca-certificates
- curl
- software-properties-common
- gnupg2
update_cache: true
register: task_result
until: task_result is success
Expand All @@ -16,7 +21,7 @@

- name: Kubectl | Debian | Add the kubectl repository
ansible.builtin.apt_repository:
repo: https://pkgs.k8s.io/core:/stable:/v1.29/deb/ /
repo: deb https://pkgs.k8s.io/core:/stable:/v1.29/deb/ /
state: present
filename: kubernetes

Expand Down

0 comments on commit 01314ea

Please sign in to comment.