adjusted paths

This commit is contained in:
Radar231 2021-07-28 21:28:35 -04:00
parent 614bcf774d
commit f9ea9ef508
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/tiddlywiki/wfh-wiki/wfh-wiki_pv.yml"
src: "{{ devpath }}/k8s_wfh-wiki/wfh-wiki_pv.yml"
- name: Create the PVC object
community.kubernetes.k8s:
state: present
namespace: tiddlywiki
src: "{{ devpath }}/k8s/tiddlywiki/wfh-wiki/wfh-wiki_pvc.yml"
src: "{{ devpath }}/k8s_wfh-wiki/wfh-wiki_pvc.yml"
- name: Create the Secrets object
community.kubernetes.k8s:
state: present
namespace: tiddlywiki
src: "{{ devpath }}/k8s/tiddlywiki/wfh-wiki/wfh-wiki_secret.yml"
src: "{{ devpath }}/k8s_wfh-wiki/wfh-wiki_secret.yml"
- name: Create the deployment object
community.kubernetes.k8s:
state: present
namespace: tiddlywiki
src: "{{ devpath }}/k8s/tiddlywiki/wfh-wiki/wfh-wiki_deployment.yml"
src: "{{ devpath }}/k8s_wfh-wiki/wfh-wiki_deployment.yml"
- name: Create the service object
community.kubernetes.k8s:
state: present
namespace: tiddlywiki
src: "{{ devpath }}/k8s/tiddlywiki/wfh-wiki/wfh-wiki_service.yml"
src: "{{ devpath }}/k8s_wfh-wiki/wfh-wiki_service.yml"
- name: Create the ingress object
community.kubernetes.k8s:
state: present
namespace: tiddlywiki
src: "{{ devpath }}/k8s/tiddlywiki/wfh-wiki/wfh-wiki_ingress.yml"
src: "{{ devpath }}/k8s_wfh-wiki/wfh-wiki_ingress.yml"
# EOF