infra/clusters/k3s/ip/ip-ingress.yml
2023-05-26 12:50:10 -05:00

29 lines
751 B
YAML

## More detailed template
# apiVersion: networking.k8s.io/v1
# kind: Ingress
# metadata:
# name: ip-deployment
# namespace: ip
# labels:
# app.kubernetes.io/name: ip-deployment
# app.kubernetes.io/instance: ip-deployment
# app.kubernetes.io/version: "1"
# annotations:
# kubernetes.io/ingress.class: nginx
# cert-manager.io/cluster-issuer: letsencrypt-prod
# spec:
# tls:
# - hosts:
# - ip.vntx.net
# secretName: ip-deployment-ingress-secret
# rules:
# - host: ip.vntx.net
# http:
# paths:
# - path: /
# pathType: Prefix
# backend:
# service:
# name: ip-service
# port:
# number: 4000