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

24 lines
479 B
YAML
Raw Normal View History

2021-11-12 22:11:10 +00:00
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:
2021-11-12 22:22:23 +00:00
name: acmedns-api
2021-11-12 22:11:10 +00:00
port:
2021-11-13 08:34:40 +00:00
number: 8080
2021-11-12 22:11:10 +00:00
tls:
- hosts:
- acmedns.tbrnt.ch
secretName: acmedns-tbrnt-ch