updated community.kubernetes to kubernetes.core

This commit is contained in:
Radar231 2022-07-07 20:49:04 -04:00
parent 762c0424b0
commit 8ca3b4f851
1 changed files with 7 additions and 7 deletions

View File

@ -11,43 +11,43 @@
- debug: msg="Deploying notes-wiki app."
- name: Create the tiddlywiki namespace
community.kubernetes.k8s:
kubernetes.core.k8s:
name: tiddlywiki
api_version: v1
kind: Namespace
state: present
- name: Create the PV object
community.kubernetes.k8s:
kubernetes.core.k8s:
state: present
src: "{{ devpath }}/k8s_notes-wiki/notes-wiki_pv.yml"
- name: Create the PVC object
community.kubernetes.k8s:
kubernetes.core.k8s:
state: present
namespace: tiddlywiki
src: "{{ devpath }}/k8s_notes-wiki/notes-wiki_pvc.yml"
- name: Create the Secrets object
community.kubernetes.k8s:
kubernetes.core.k8s:
state: present
namespace: tiddlywiki
src: "{{ devpath }}/k8s_notes-wiki/notes-wiki_secret.yml"
- name: Create the deployment object
community.kubernetes.k8s:
kubernetes.core.k8s:
state: present
namespace: tiddlywiki
src: "{{ devpath }}/k8s_notes-wiki/notes-wiki_deployment.yml"
- name: Create the service object
community.kubernetes.k8s:
kubernetes.core.k8s:
state: present
namespace: tiddlywiki
src: "{{ devpath }}/k8s_notes-wiki/notes-wiki_service.yml"
- name: Create the ingress object
community.kubernetes.k8s:
kubernetes.core.k8s:
state: present
namespace: tiddlywiki
src: "{{ devpath }}/k8s_notes-wiki/notes-wiki_ingress.yml"