FEAT: add cert-manager selfsigned issuer
This commit is contained in:
parent
498b24ec17
commit
33f66d9090
3 changed files with 11 additions and 0 deletions
12
k8s-manifests/cert-manager/cert-manager.jsonnet
Normal file
12
k8s-manifests/cert-manager/cert-manager.jsonnet
Normal file
|
@ -0,0 +1,12 @@
|
|||
local app = import "../_templates/argocd_app.libsonnet";
|
||||
|
||||
[
|
||||
app + {
|
||||
chart:: "cert-manager",
|
||||
repo:: "https://charts.jetstack.io",
|
||||
version:: "v1.8.*",
|
||||
values:: |||
|
||||
installCRDs: true
|
||||
|||
|
||||
},
|
||||
]
|
10
k8s-manifests/cert-manager/selfsigned-issuer.yaml
Normal file
10
k8s-manifests/cert-manager/selfsigned-issuer.yaml
Normal file
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
apiVersion: cert-manager.io/v1
|
||||
kind: ClusterIssuer
|
||||
metadata:
|
||||
name: selfsigned
|
||||
namespace: cert-manager
|
||||
annotations:
|
||||
argocd.argoproj.io/sync-options: SkipDryRunOnMissingResource=true
|
||||
spec:
|
||||
selfSigned: {}
|
Loading…
Add table
Add a link
Reference in a new issue