role_k8s_nagios_deploy/tasks/main.yml

56 lines
1.4 KiB
YAML

---
#####################################################################
#
# nagios_deploy role
#
# - requires that the 'devpath' variable be set
#
#####################################################################
# tasks file for nagios_deploy role
- debug: msg="Deploying nagios app."
- name: Create the nagios namespace
community.kubernetes.k8s:
name: nagios
api_version: v1
kind: Namespace
state: present
- name: Create the PV object
community.kubernetes.k8s:
state: present
src: "{{ devpath }}/k8s/nagios/nagios/nagios_pv.yml"
- name: Create the PVC object
community.kubernetes.k8s:
state: present
namespace: nagios
src: "{{ devpath }}/k8s/nagios/nagios/nagios_pvc.yml"
- name: Create the Secrets object
community.kubernetes.k8s:
state: present
namespace: nagios
src: "{{ devpath }}/k8s/nagios/nagios/nagios_secret.yml"
- name: Create the deployment object
community.kubernetes.k8s:
state: present
namespace: nagios
src: "{{ devpath }}/k8s/nagios/nagios/nagios_deployment.yml"
- name: Create the service object
community.kubernetes.k8s:
state: present
namespace: nagios
src: "{{ devpath }}/k8s/nagios/nagios/nagios_service.yml"
- name: Create the ingress object
community.kubernetes.k8s:
state: present
namespace: nagios
src: "{{ devpath }}/k8s/nagios/nagios/nagios_ingress.yml"
# EOF