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 c60a30e887
All checks were successful
continuous-integration/drone/push Build is passing
fix svc
2021-11-13 09:34:40 +01:00

24 lines
479 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-api
port:
number: 8080
tls:
- hosts:
- acmedns.tbrnt.ch
secretName: acmedns-tbrnt-ch