apps/lms/ing.yaml (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations:
kubernetes.io/tls-acme: 'true'
cert-manager.io/issuer: "letsencrypt-prod"
name: lms-ingress
spec:
tls:
- hosts:
- m.icyphox.sh
secretName: lms-certs
rules:
- host: m.icyphox.sh
http:
paths:
- backend:
service:
name: lms
port:
number: 5082
path: /
pathType: Prefix
|