platform/pods/account/kube/ingress.yml
Andrey Platov bdf41f17d4
initial account pod
Signed-off-by: Andrey Platov <andrey@hardcoreeng.com>
2021-09-10 12:26:11 +02:00

24 lines
477 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations:
kubernetes.io/ingress.class: "nginx"
cert-manager.io/issuer: "letsencrypt-prod"
name: account-ingress
spec:
tls:
- hosts:
- account.hc.engineering
secretName: account-tls
rules:
- host: account.hc.engineering
http:
paths:
- backend:
service:
name: account
port:
number: 80
path: /
pathType: Prefix