Skip to content
Alexandre Perlmutter edited this page Jul 28, 2023 · 1 revision
  1. Create a ClusterIssuer
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
  name: <CLUSTER_ISSUER_NAME>
spec:
    ...
  1. Annotate the Route that needs to be managed by cert-manager as follows:
annotations:
    cert-manager.io/cluster-issuer: <CLUSTER_ISSUER_NAME>
  1. Sit tight and watch your route's TLS being automatically populated!

On the first certificate issuance, it might take a few minutes for the certificate to be ready. Hence, you might have to wait a little before you see your route being populated 😉

  1. That's it!
    cert-manager will take care of the certificate renewal process.
    Our controller will ensure that your route's TLS is always populated with the correct up-to-date certificate.
Clone this wiki locally