This commit is contained in:
parent
6d9b2c182d
commit
928566923a
1 changed files with 16 additions and 3 deletions
|
|
@ -23,7 +23,7 @@
|
||||||
- --dns01-recursive-nameservers=8.8.8.8:53,1.1.1.1:53
|
- --dns01-recursive-nameservers=8.8.8.8:53,1.1.1.1:53
|
||||||
|
|
||||||
- name: Create Secret object for API Key authentification
|
- name: Create Secret object for API Key authentification
|
||||||
k8s:
|
kubernetes.core.k8s:
|
||||||
state: present
|
state: present
|
||||||
context: "{{ my_context }}"
|
context: "{{ my_context }}"
|
||||||
apply: true
|
apply: true
|
||||||
|
|
@ -36,8 +36,21 @@
|
||||||
|
|
||||||
# Tempo ici
|
# Tempo ici
|
||||||
|
|
||||||
|
- name: Define SelfSigned ClusterIssuer
|
||||||
|
kubernetes.core.k8s:
|
||||||
|
state: present
|
||||||
|
context: "{{ my_context }}"
|
||||||
|
# namespace: "cert-manager"
|
||||||
|
definition:
|
||||||
|
apiVersion: cert-manager.io/v1
|
||||||
|
kind: ClusterIssuer
|
||||||
|
metadata:
|
||||||
|
name: selfsigned
|
||||||
|
spec:
|
||||||
|
selfSigned: {}
|
||||||
|
|
||||||
- name: Defined ClusterIssuers
|
- name: Defined ClusterIssuers
|
||||||
k8s:
|
kubernetes.core.k8s:
|
||||||
state: present
|
state: present
|
||||||
context: "{{ my_context }}"
|
context: "{{ my_context }}"
|
||||||
apply: true
|
apply: true
|
||||||
|
|
@ -76,7 +89,7 @@
|
||||||
# - item.provider == "ovh"
|
# - item.provider == "ovh"
|
||||||
|
|
||||||
- name: OVH WebHook dependency
|
- name: OVH WebHook dependency
|
||||||
k8s:
|
kubernetes.core.k8s:
|
||||||
state: present
|
state: present
|
||||||
context: "{{ my_context }}"
|
context: "{{ my_context }}"
|
||||||
apply: true
|
apply: true
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue