mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-22 21:50:34 +03:00
3e8a531099
Signed-off-by: Andrey Platov <andrey@hardcoreeng.com>
24 lines
467 B
YAML
24 lines
467 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
annotations:
|
|
kubernetes.io/ingress.class: "nginx"
|
|
cert-manager.io/issuer: "letsencrypt-prod"
|
|
name: front-ingress
|
|
spec:
|
|
tls:
|
|
- hosts:
|
|
- front.hc.engineering
|
|
secretName: front-tls
|
|
rules:
|
|
- host: front.hc.engineering
|
|
http:
|
|
paths:
|
|
- backend:
|
|
service:
|
|
name: front
|
|
port:
|
|
number: 80
|
|
path: /
|
|
pathType: Prefix
|