initial checkin

This commit is contained in:
Radar231 2021-09-25 20:07:29 -04:00
commit 67d4a09fd6
3 changed files with 66 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

49
tasks/main.yml Normal file
View File

@ -0,0 +1,49 @@
---
#####################################################################
#
# homer_deploy role
#
# - requires that the 'devpath' variable be set
#
#####################################################################
# tasks file for homer_deploy role
- debug: msg="Deploying homer app."
- name: Create the homer namespace
community.kubernetes.k8s:
name: homer
api_version: v1
kind: Namespace
state: present
- name: Create the PV object
community.kubernetes.k8s:
state: present
src: "{{ devpath }}/k8s_homer/homer_pv.yml"
- name: Create the PVC object
community.kubernetes.k8s:
state: present
namespace: homer
src: "{{ devpath }}/k8s_homer/homer_pvc.yml"
- name: Create the deployment object
community.kubernetes.k8s:
state: present
namespace: homer
src: "{{ devpath }}/k8s_homer/homer_deployment.yml"
- name: Create the service object
community.kubernetes.k8s:
state: present
namespace: homer
src: "{{ devpath }}/k8s_homer/homer_service.yml"
- name: Create the ingress object
community.kubernetes.k8s:
state: present
namespace: homer
src: "{{ devpath }}/k8s_homer/homer_ingress.yml"
# EOF