You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
389 B
YAML
13 lines
389 B
YAML
2 years ago
|
- name: Deploy Cilium-CLI
|
||
|
ansible.builtin.unarchive:
|
||
|
src: https://github.com/cilium/cilium-cli/releases/latest/download/cilium-linux-amd64.tar.gz
|
||
|
dest: /usr/local/bin
|
||
|
remote_src: yes
|
||
|
mode: u=rwx,g=rx,o=rx
|
||
|
|
||
|
- name: Install Cilium
|
||
|
when: "inventory_hostname == groups['kubernetes'][0]"
|
||
|
command: -cilium install
|
||
|
environment:
|
||
|
KUBECONFIG: /etc/kubernetes/admin.conf
|