Commit 6074875
authored
Fix unsupported regex in ingress-nginx config
The ingress component failed to deploy when running
make deploy, with:
W0313 14:22:12.722815 31494 warnings.go:70] path /(/|$) cannot be used with pathType Prefix Error: 1 error occurred: * admission webhook "validate.nginx.ingress.kubernetes.io" denied the request: ingress contains invalid paths: path /raster(/|$)(.*) cannot be used with pathType Prefix path /stac(/|$)(.*) cannot be used with pathType Prefix path /vector(/|$)(.*) cannot be used with pathType Prefix path /(/|$) cannot be used with pathType Prefix
Changing the type to ImplementationSpecific fixes the error,
and the app seems to function as expected1 parent 456bfff commit 6074875
1 file changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
36 | | - | |
| 36 | + | |
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
44 | | - | |
| 44 | + | |
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
| |||
52 | 52 | | |
53 | 53 | | |
54 | 54 | | |
55 | | - | |
| 55 | + | |
56 | 56 | | |
57 | 57 | | |
58 | 58 | | |
| |||
0 commit comments