FEAT: add cert-manager selfsigned issuer
This commit is contained in:
parent
498b24ec17
commit
33f66d9090
3 changed files with 11 additions and 0 deletions
|
@ -5,6 +5,7 @@ Run `kubectl apply -f init.yml` to install:
|
|||
* [ArgoCD](https://argoproj.github.io/cd/)
|
||||
* [NGINX Ingress Controller](https://kubernetes.github.io/ingress-nginx/)
|
||||
* [cert-manager](https://cert-manager.io/)
|
||||
* selfsigned issuer
|
||||
* [prometheus and grafana](https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack)
|
||||
* [loki](https://grafana.com/docs/loki/latest/)
|
||||
* [keel](https://keel.sh)
|
||||
|
|
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…
Reference in a new issue