adjusted paths

This commit is contained in:
Radar231 2021-07-28 21:28:46 -04:00
parent fbc517de18
commit 576838939a
1 changed files with 5 additions and 5 deletions

View File

@ -20,30 +20,30 @@
- name: Create the PV object
community.kubernetes.k8s:
state: present
src: "{{ devpath }}/k8s/heimdall/heimdall/heimdall_pv.yml"
src: "{{ devpath }}/k8s_heimdall/heimdall_pv.yml"
- name: Create the PVC object
community.kubernetes.k8s:
state: present
namespace: heimdall
src: "{{ devpath }}/k8s/heimdall/heimdall/heimdall_pvc.yml"
src: "{{ devpath }}/k8s_heimdall/heimdall_pvc.yml"
- name: Create the deployment object
community.kubernetes.k8s:
state: present
namespace: heimdall
src: "{{ devpath }}/k8s/heimdall/heimdall/heimdall_deployment.yml"
src: "{{ devpath }}/k8s_heimdall/heimdall_deployment.yml"
- name: Create the service object
community.kubernetes.k8s:
state: present
namespace: heimdall
src: "{{ devpath }}/k8s/heimdall/heimdall/heimdall_service.yml"
src: "{{ devpath }}/k8s_heimdall/heimdall_service.yml"
- name: Create the ingress object
community.kubernetes.k8s:
state: present
namespace: heimdall
src: "{{ devpath }}/k8s/heimdall/heimdall/heimdall_ingress.yml"
src: "{{ devpath }}/k8s_heimdall/heimdall_ingress.yml"
# EOF