23 lines
473 B
YAML
23 lines
473 B
YAML
apiVersion: extensions/v1beta1
|
|
kind: Ingress
|
|
metadata:
|
|
name: kuard
|
|
annotations:
|
|
kubernetes.io/ingress.class: "nginx"
|
|
certmanager.k8s.io/issuer: "letsencrypt-staging"
|
|
certmanager.k8s.io/acme-challenge-type: http01
|
|
|
|
spec:
|
|
tls:
|
|
- hosts:
|
|
- example.example.com
|
|
secretName: quickstart-example-tls
|
|
rules:
|
|
- host: example.example.com
|
|
http:
|
|
paths:
|
|
- path: /
|
|
backend:
|
|
serviceName: kuard
|
|
servicePort: 80
|