* feat(k3s): Updated to v1.24.6+k3s1 * feat(kube-vip): Update to v0.5.5 * feat(metal-lb): Update to v0.13.6 * fix(pip): Freeze requirements * fix(lint): Fixed ansible-lint
15 lines
467 B
YAML
15 lines
467 B
YAML
---
|
|
- name: Verify
|
|
run_once: true
|
|
delegate_to: "{{ outside_host }}"
|
|
block:
|
|
- name: "Test CASE: Get kube config"
|
|
ansible.builtin.import_tasks: kubecfg-fetch.yml
|
|
- name: "TEST CASE: Get nodes"
|
|
ansible.builtin.include_tasks: test/get-nodes.yml
|
|
- name: "TEST CASE: Deploy example"
|
|
ansible.builtin.include_tasks: test/deploy-example.yml
|
|
always:
|
|
- name: "TEST CASE: Cleanup"
|
|
ansible.builtin.import_tasks: kubecfg-cleanup.yml
|