Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@dbones
Created June 30, 2020 19:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dbones/059b768387546b98032b5aa2e7ad4714 to your computer and use it in GitHub Desktop.
Save dbones/059b768387546b98032b5aa2e7ad4714 to your computer and use it in GitHub Desktop.
cert manager - self cert 0.8
apiVersion: certmanager.k8s.io/v1alpha1
kind: ClusterIssuer
metadata:
name: selfsigning-issuer
spec:
selfSigned: {}
---
apiVersion: certmanager.k8s.io/v1alpha1
kind: Certificate
metadata:
name: example-crt
namespace: istio-system
spec:
secretName: awesome-io
commonName: "awesome.io"
isCA: true
issuerRef:
name: selfsigning-issuer
kind: ClusterIssuer
organization:
- Awesome inc
dnsNames:
- awesome.io
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment