forked from projectcontour/contour
-
Notifications
You must be signed in to change notification settings - Fork 0
/
netlify.toml
120 lines (107 loc) · 5 KB
/
netlify.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
[build]
base = "site/"
command = "jekyll build"
publish = "site/_site"
[build.processing]
skip_processing = false # -> Enable processing
[build.processing.css]
bundle = true # -> Concatenate consecutive CSS files together to reduce HTTP requests.
minify = true # -> Run CSS through a minifier to reduce file size.
[build.processing.js]
bundle = true # -> Concatenate consecutive JS files together to reduce HTTP requests.
minify = true # -> Run JS through a minifier to reduce file size.
[build.processing.images]
compress = true # -> Run all images through lossless image compression.
# Reference documentation
# Optimization blog post: https://www.netlify.com/blog/2019/08/05/control-your-asset-optimization-settings-from-netlify.toml/
# How to guide: https://docs.netlify.com/configure-builds/file-based-configuration/#post-processing
# Redirect /quickstart/contour.yaml to the deployment that matches :latest.
#
# kubectl apply https://projectcontour.io/quickstart/contour.yaml
[[redirects]]
from = "/quickstart/contour.yaml"
to = "https://raw.githubusercontent.com/projectcontour/contour/release-1.13/examples/render/contour.yaml"
status = 302
# Redirect versioned quickstarts so that they can easily be referenced by
# users or for upgrade testing.
#
# kubectl apply https://projectcontour.io/quickstart/v1.4.0/contour.yaml
[[redirects]]
from = "/quickstart/*/contour.yaml"
to = "https://raw.githubusercontent.com/projectcontour/contour/:splat/examples/render/contour.yaml"
status = 302
# Redirect /quickstart/operator.yaml to the deployment that matches :latest.
#
# kubectl apply https://projectcontour.io/quickstart/operator.yaml
[[redirects]]
from = "/quickstart/operator.yaml"
to = "https://raw.githubusercontent.com/projectcontour/contour-operator/release-1.13/examples/operator/operator.yaml"
status = 302
# Redirect versioned quickstarts so that they can easily be referenced by
# users or for upgrade testing.
#
# kubectl apply https://projectcontour.io/quickstart/v1.11.0/operator.yaml
[[redirects]]
from = "/quickstart/*/operator.yaml"
to = "https://raw.githubusercontent.com/projectcontour/contour-operator/:splat/examples/operator/operator.yaml"
status = 302
# Redirect /quickstart/contour-custom-resource.yaml to the Contour custom resource that matches :latest.
#
# kubectl apply https://projectcontour.io/quickstart/contour-custom-resource.yaml
[[redirects]]
from = "/quickstart/contour-custom-resource.yaml"
to = "https://raw.githubusercontent.com/projectcontour/contour-operator/release-1.13/examples/contour/contour.yaml"
status = 302
# Redirect versioned quickstarts so that they can easily be referenced by
# users or for upgrade testing.
#
# kubectl apply https://projectcontour.io/quickstart/v1.11.0/contour-custom-resource.yaml
[[redirects]]
from = "/quickstart/*/contour-custom-resource.yaml"
to = "https://raw.githubusercontent.com/projectcontour/contour-operator/:splat/examples/contour/contour.yaml"
status = 302
# Redirect /quickstart/gateway.yaml to the example Gateway manifest that matches :latest.
#
# kubectl apply https://projectcontour.io/quickstart/gateway.yaml
[[redirects]]
from = "/quickstart/gateway.yaml"
to = "https://raw.githubusercontent.com/projectcontour/contour-operator/release-1.13/examples/gateway/gateway.yaml"
status = 302
# Redirect versioned quickstarts so that they can easily be referenced by
# users or for upgrade testing.
#
# kubectl apply https://projectcontour.io/quickstart/v1.11.0/gateway.yaml
[[redirects]]
from = "/quickstart/*/gateway.yaml"
to = "https://raw.githubusercontent.com/projectcontour/contour-operator/:splat/examples/gateway/gateway.yaml"
status = 302
# Redirect /quickstart/gateway-nodeport.yaml to the example Gateway manifest that matches :latest.
#
# kubectl apply https://projectcontour.io/quickstart/gateway-nodeport.yaml
[[redirects]]
from = "/quickstart/gateway-nodeport.yaml"
to = "https://raw.githubusercontent.com/projectcontour/contour-operator/release-1.13/examples/gateway/gateway-nodeport.yaml"
status = 302
# Redirect versioned quickstarts so that they can easily be referenced by
# users or for upgrade testing.
#
# kubectl apply https://projectcontour.io/quickstart/v1.11.0/gateway-nodeport.yaml
[[redirects]]
from = "/quickstart/*/gateway-nodeport.yaml"
to = "https://raw.githubusercontent.com/projectcontour/contour-operator/:splat/examples/gateway/gateway-nodeport.yaml"
status = 302
# Redirect /quickstart/kuard.yaml to the example Kuard manifest that matches :latest.
#
# kubectl apply https://projectcontour.io/quickstart/kuard.yaml
[[redirects]]
from = "/quickstart/kuard.yaml"
to = "https://raw.githubusercontent.com/projectcontour/contour-operator/release-1.13/examples/gateway/kuard/kuard.yaml"
status = 302
# Redirect versioned quickstarts so that they can easily be referenced by
# users or for upgrade testing.
#
# kubectl apply https://projectcontour.io/quickstart/v1.11.0/kuard.yaml
[[redirects]]
from = "/quickstart/*/kuard.yaml"
to = "https://raw.githubusercontent.com/projectcontour/contour-operator/:splat/examples/gateway/kuard/kuard.yaml"
status = 302