Skip to content

Instantly share code, notes, and snippets.

@pablorsk
Last active July 30, 2025 14:24
Show Gist options
  • Select an option

  • Save pablorsk/fa6e0dda09052aa03899cc15595cb00e to your computer and use it in GitHub Desktop.

Select an option

Save pablorsk/fa6e0dda09052aa03899cc15595cb00e to your computer and use it in GitHub Desktop.
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