mirror of
https://github.com/TECHNOFAB11/zfs-localpv.git
synced 2025-12-12 22:40:12 +01:00
12 lines
340 B
YAML
12 lines
340 B
YAML
---
|
|
#Deploying application on k8's cluster and cross checking whether the
|
|
#application is deployed successfully.
|
|
- name: Deploying {{ application_name }}
|
|
k8s:
|
|
state: present
|
|
src: "{{ application }}"
|
|
namespace: "{{ app_ns }}"
|
|
merge_type: merge
|
|
register: result
|
|
|
|
- include_tasks: /e2e-tests/utils/k8s/status_app_pod.yml
|