FEAT: add cert-manager selfsigned issuer

This commit is contained in:
Sebastian Mark 2022-04-29 15:19:50 +02:00
parent 498b24ec17
commit 33f66d9090
3 changed files with 11 additions and 0 deletions

View 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
|||
},
]

View 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: {}