updated community.kubernetes to kubernetes.core

This commit is contained in:
Radar231 2022-07-07 20:47:32 -04:00
parent 576838939a
commit 723ccb9c85
1 changed files with 6 additions and 6 deletions

View File

@ -11,37 +11,37 @@
- debug: msg="Deploying heimdall app."
- name: Create the heimdall namespace
community.kubernetes.k8s:
kubernetes.core.k8s:
name: heimdall
api_version: v1
kind: Namespace
state: present
- name: Create the PV object
community.kubernetes.k8s:
kubernetes.core.k8s:
state: present
src: "{{ devpath }}/k8s_heimdall/heimdall_pv.yml"
- name: Create the PVC object
community.kubernetes.k8s:
kubernetes.core.k8s:
state: present
namespace: heimdall
src: "{{ devpath }}/k8s_heimdall/heimdall_pvc.yml"
- name: Create the deployment object
community.kubernetes.k8s:
kubernetes.core.k8s:
state: present
namespace: heimdall
src: "{{ devpath }}/k8s_heimdall/heimdall_deployment.yml"
- name: Create the service object
community.kubernetes.k8s:
kubernetes.core.k8s:
state: present
namespace: heimdall
src: "{{ devpath }}/k8s_heimdall/heimdall_service.yml"
- name: Create the ingress object
community.kubernetes.k8s:
kubernetes.core.k8s:
state: present
namespace: heimdall
src: "{{ devpath }}/k8s_heimdall/heimdall_ingress.yml"