Skip to content

Instantly share code, notes, and snippets.

@nabsul
Last active April 30, 2022 16:07
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 nabsul/a699fc1715939c02652cf88673100652 to your computer and use it in GitHub Desktop.
Save nabsul/a699fc1715939c02652cf88673100652 to your computer and use it in GitHub Desktop.
KCert Debug Ingress
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: kcert-debug
namespace: kcert
annotations:
kubernetes.io/ingress.class: "nginx"
spec:
tls:
- hosts:
- [REPLACE WITH YOUR HOST NAME]
rules:
- host: [REPLACE WITH YOUR HOST NAME]
http:
paths:
- path: /.well-known/acme-challenge/test/
pathType: Prefix
backend:
service:
name: kcert
port:
number: 80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment