blob: f08ad70255c44e3d432ceeed71533ef84ae2900d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
---
- name: Clean Contiv
import_tasks: clear-contiv.yaml
- name: Deploy Contiv
k8s:
state: present
apply: yes
definition: '{{ item }}'
with_items: '{{ lookup("url", "https://raw.githubusercontent.com/contiv/vpp/v3.4.2/k8s/contiv-vpp.yaml", split_lines=False) | from_yaml_all | list }}'
when: item is not none
|