mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-04-23 00:12:17 +08:00
* Add missing API switch for GHES (#200) * Vidya reddy/prettier code (#203) * Add node modules and compiled JavaScript from main Co-authored-by: nv35 <76777923+nv35@users.noreply.github.com> Co-authored-by: Vidya <59590642+Vidya2606@users.noreply.github.com> Co-authored-by: Oliver King <oking3@uncc.edu>
19 lines
481 B
YAML
19 lines
481 B
YAML
apiVersion: networking.k8s.io/v1beta1
|
|
kind: Ingress
|
|
metadata:
|
|
name: nginx-ingress
|
|
annotations:
|
|
nginx.ingress.kubernetes.io/rewrite-target: /
|
|
spec:
|
|
rules:
|
|
- http:
|
|
paths:
|
|
- path: /testpath
|
|
backend:
|
|
serviceName: nginx-service
|
|
servicePort: 80
|
|
- path: /testpath2
|
|
backend:
|
|
serviceName: unrouted-service
|
|
servicePort: 80
|