k8s/manifests/03-ingress/web2-ingress.yaml
Simple_Not 1529ecdbf4
Some checks failed
continuous-integration/drone/push Build is failing
ingress?
2023-06-22 00:36:51 +10:00

18 lines
399 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: example-ingress
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /$1
spec:
rules:
- host: hello-world.info
http:
paths:
- path: /v2
pathType: Prefix
backend:
service:
name: web2
port:
number: 8080