We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ea7424d + 03eafe2 commit a4ea58fCopy full SHA for a4ea58f
deployment/chart/templates/ingress.yaml
@@ -0,0 +1,21 @@
1
+apiVersion: networking.k8s.io/v1
2
+kind: Ingress
3
+metadata:
4
+ name: intersect-ingress
5
+ annotations:
6
+ kubernetes.io/ingress.class: nginx
7
+ nginx.ingress.kubernetes.io/use-regex: "true"
8
+ nginx.ingress.kubernetes.io/rewrite-target: /$2
9
+ nginx.org/client-max-body-size: "20m"
10
+spec:
11
+ rules:
12
+ - host: intersect.nationalsciencedatafabric.org
13
+ http:
14
+ paths:
15
+ - pathType: ImplementationSpecific
16
+ path: /proxy(/|$)(.*)
17
+ backend:
18
+ service:
19
+ name: nsdf-intersect-proxy-http-server
20
+ port:
21
+ number: 9071
0 commit comments