Migrate cert-manager to externally controlled file + patches
This commit is contained in:
parent
a75829d3b2
commit
a894c8cf50
3 changed files with 9 additions and 9353 deletions
File diff suppressed because it is too large
Load diff
3
k8s/operators/cert-manager/controller-patches.yaml
Normal file
3
k8s/operators/cert-manager/controller-patches.yaml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
- op: add
|
||||||
|
path: /spec/template/spec/containers/0/args/-
|
||||||
|
value: --dns01-recursive-nameservers-only # adding this arg makes DNS-01 validation work, unclear why it doesnt work otherwise.
|
|
@ -2,9 +2,13 @@ apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
kind: Kustomization
|
kind: Kustomization
|
||||||
# namespace: cert-manager
|
# namespace: cert-manager
|
||||||
resources:
|
resources:
|
||||||
- cert-manager.yaml # source: https://github.com/cert-manager/cert-manager/releases/download/v1.15.0/cert-manager.yaml
|
- https://github.com/cert-manager/cert-manager/releases/download/v1.15.1/cert-manager.yaml
|
||||||
- secrets.yaml
|
- secrets.yaml
|
||||||
- pdns-hook.yaml
|
- pdns-hook.yaml
|
||||||
- letsencrypt.yaml
|
- letsencrypt.yaml
|
||||||
- selfsigned.yaml
|
- selfsigned.yaml
|
||||||
|
patches:
|
||||||
|
- path: controller-patches.yaml
|
||||||
|
target:
|
||||||
|
kind: Deployment
|
||||||
|
name: cert-manager
|
||||||
|
|
Loading…
Reference in a new issue