Skip to content

Commit 8039dc7

Browse files
Create canary-ingress.yaml
1 parent 2c86c9f commit 8039dc7

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
apiVersion: networking.k8s.io/v1
2+
kind: Ingress
3+
metadata:
4+
name: canary-demo
5+
annotations:
6+
ingress.kubernetes.io/proxy-body-size: 100M
7+
kubernetes.io/ingress.class: nginx
8+
ingress.kubernetes.io/app-root: /
9+
spec:
10+
rules:
11+
- host: canary.dev.argoproj.io
12+
http:
13+
paths:
14+
- path: /
15+
pathType: ImplementationSpecific
16+
backend:
17+
service:
18+
name: canary-demo
19+
port:
20+
number: 80

0 commit comments

Comments
 (0)