Last active
July 30, 2025 14:24
-
-
Save pablorsk/fa6e0dda09052aa03899cc15595cb00e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: cert-manager.io/v1 | |
| kind: ClusterIssuer | |
| metadata: | |
| name: lets-encrypt-http-issuer | |
| spec: | |
| # ACME issuer configuration | |
| # `email` - the email address to be associated with the ACME account (make sure it's a valid one) | |
| # `server` - the URL used to access the ACME server’s directory endpoint | |
| # `privateKeySecretRef` - Kubernetes Secret to store the automatically generated ACME account private key | |
| acme: | |
| email: <VALID_EMAIL_ADDRESS_HERE> | |
| server: https://acme-v02.api.letsencrypt.org/directory | |
| privateKeySecretRef: | |
| name: letsencrypt-nginx-private-key-2025 | |
| solvers: | |
| # Use the HTTP-01 challenge provider | |
| - http01: | |
| ingress: | |
| class: nginx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment