k8s/manifests/03-ingress/hw-ingress.yaml
Simple_Not b9b02d321c
Some checks failed
continuous-integration/drone/push Build is failing
ingress?
2023-06-22 00:18:52 +10:00

26 lines
579 B
YAML

---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: hw-ingress
namespace: vdk2ch
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /$1
spec:
rules:
- host: asdf.vdk2ch.ru
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: hw-service
port: 6666
# - path: /
# pathType: Prefix
# backend:
# service:
# name: hw-service
# port:
# number: 80