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.
18 lines
604 B
YAML
18 lines
604 B
YAML
2 years ago
|
- name: Deploy calico operator
|
||
|
command: kubectl create -f https://raw.githubusercontent.com/projectcalico/calico/v3.24.3/manifests/tigera-operator.yaml
|
||
|
register: command
|
||
|
changed_when: "'created' in command.stdout"
|
||
|
run_once: true
|
||
|
|
||
|
- name: Deploy calico ressource template
|
||
|
ansible.builtin.template:
|
||
|
src: ./k3s/server/network-plugin/calico/custom-ressource.yml.jinja2
|
||
|
dest: /root/calico-ressource.yml
|
||
|
run_once: true
|
||
|
|
||
|
- name: Deploy calico ressource
|
||
|
command: kubectl apply -f /root/calico-ressource.yml
|
||
|
register: command
|
||
|
changed_when: "'created' in command.stdout"
|
||
|
run_once: true
|