initial checkin

This commit is contained in:
Radar231 2021-07-23 18:43:52 -04:00
commit 1b2b91165f
3 changed files with 60 additions and 0 deletions

8
README.md Normal file
View File

@ -0,0 +1,8 @@
# Ansible Role: k8s_delinit_deploy
## Introduction
This role will deploy the delinit kubernetes application.
This role requires that the 'devpath' variable be set.

9
meta/main.yml Normal file
View File

@ -0,0 +1,9 @@
galaxy_info:
author: radar231
license: license (GPL-2.0-or-later, MIT, etc)
min_ansible_version: 2.1
galaxy_tags: []
dependencies: []
# EOF

43
tasks/main.yml Normal file
View File

@ -0,0 +1,43 @@
---
#####################################################################
#
# mosquitto_deploy role
#
# - requires that the 'devpath' variable be set
#
#####################################################################
# tasks file for mosquitto_deploy role
- debug: msg="Deploying mosquitto app."
- name: Create the home-automation namespace
community.kubernetes.k8s:
name: home-automation
api_version: v1
kind: Namespace
state: present
- name: Create the PV object
community.kubernetes.k8s:
state: present
src: "{{ devpath }}/k8s/home-automation/mosquitto/mosquitto_pv.yml"
- name: Create the PVC object
community.kubernetes.k8s:
state: present
namespace: home-automation
src: "{{ devpath }}/k8s/home-automation/mosquitto/mosquitto_pvc.yml"
- name: Create the deployment object
community.kubernetes.k8s:
state: present
namespace: home-automation
src: "{{ devpath }}/k8s/home-automation/mosquitto/mosquitto_deployment.yml"
- name: Create the svclb object
community.kubernetes.k8s:
state: present
namespace: home-automation
src: "{{ devpath }}/k8s/home-automation/mosquitto/mosquitto_svclb.yml"
# EOF