This repository has been archived on 2023-04-02. You can view files and clone it, but cannot push or open issues or pull requests.
gitops-tbrnt/acmedns/ingress.yaml
Tobias Brunner 153e078d51
All checks were successful
continuous-integration/drone/push Build is passing
initial version of acmedns
2021-11-12 23:11:10 +01:00

24 lines
472 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: acmedns
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
ingress.kubernetes.io/ssl-redirect: "true"
spec:
rules:
- host: acmedns.tbrnt.ch
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: acmedns
port:
name: api
tls:
- hosts:
- acmedns.tbrnt.ch
secretName: acmedns-tbrnt-ch