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

20 lines
466 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:
number: 80