k8s let's encrypt issuer and cert creation

This commit is contained in:
2022-08-04 20:03:42 -04:00
parent 7410984c5e
commit 8c752b2b70
10 changed files with 171 additions and 11 deletions

View File

@@ -0,0 +1,17 @@
---
# install the required python3 modules with pip
- name: Install required packages for pip
apt:
name: "{{ item }}"
update_cache: yes
cache_valid_time: 3600
state: latest
with_items:
- python3-pip
- name: Install ansible kubernetes python packages
ansible.builtin.pip:
name:
- anisble
- kubernetes

View File

@@ -16,3 +16,5 @@
- include_tasks: install_helm.yml
#install required python modules
- include_tasks: install.python_modules.yml