adjusted paths

This commit is contained in:
Radar231 2021-07-28 21:28:11 -04:00
parent 7e8ebb20f9
commit 8cee04c46b
1 changed files with 6 additions and 6 deletions

View File

@ -20,36 +20,36 @@
- name: Create the PV object
community.kubernetes.k8s:
state: present
src: "{{ devpath }}/k8s/nagios/nagios/nagios_pv.yml"
src: "{{ devpath }}/k8s_nagios/nagios_pv.yml"
- name: Create the PVC object
community.kubernetes.k8s:
state: present
namespace: nagios
src: "{{ devpath }}/k8s/nagios/nagios/nagios_pvc.yml"
src: "{{ devpath }}/k8s_nagios/nagios_pvc.yml"
- name: Create the Secrets object
community.kubernetes.k8s:
state: present
namespace: nagios
src: "{{ devpath }}/k8s/nagios/nagios/nagios_secret.yml"
src: "{{ devpath }}/k8s_nagios/nagios_secret.yml"
- name: Create the deployment object
community.kubernetes.k8s:
state: present
namespace: nagios
src: "{{ devpath }}/k8s/nagios/nagios/nagios_deployment.yml"
src: "{{ devpath }}/k8s_nagios/nagios_deployment.yml"
- name: Create the service object
community.kubernetes.k8s:
state: present
namespace: nagios
src: "{{ devpath }}/k8s/nagios/nagios/nagios_service.yml"
src: "{{ devpath }}/k8s_nagios/nagios_service.yml"
- name: Create the ingress object
community.kubernetes.k8s:
state: present
namespace: nagios
src: "{{ devpath }}/k8s/nagios/nagios/nagios_ingress.yml"
src: "{{ devpath }}/k8s_nagios/nagios_ingress.yml"
# EOF