forked from ibm-messaging/mq-keda-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
326 lines (266 loc) · 7.31 KB
/
config.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
baseURL = "https://keda.sh"
languageCode = "en-us"
title = "KEDA"
enableGitInfo = true
disableKinds = ["taxonomy", "taxonomyTerm"]
# See other available styles here: https://xyproto.github.io/splash/docs/
[markup.highlight]
style = "dracula"
[params]
# Main page hero
tagline = "Kubernetes Event-driven Autoscaling"
description = "Application autoscaling made simple"
# "What is KEDA?" section on main page
what_is = """
**KEDA** is a [Kubernetes](https://kubernetes.io)-based Event Driven Autoscaler. With KEDA, you can drive the scaling of any container in Kubernetes based on the number of events needing to be processed.
**KEDA** is a single-purpose and lightweight component that can be added into any Kubernetes cluster. KEDA works alongside standard Kubernetes components like the [Horizontal Pod Autoscaler](https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/) and can extend functionality without overwriting or duplication. With KEDA you can explicitly map the apps you want to use event-driven scale, with other apps continuing to function. This makes KEDA a flexible and safe option to run alongside any number of any other Kubernetes applications or frameworks.
"""
locale = "en_US"
twitter_handle = "kedaorg"
font_awesome_version = "5.12.1"
alpine_js_version = "2.2.1"
favicon = "favicon.png"
[params.versions]
docs = ["2.0", "1.5", "1.4"]
# Site fonts. For more options see https://fonts.google.com.
[[params.fonts]]
name = "Inria Sans"
sizes = [300, 400, 600, 700]
type = "sans_serif"
[[params.fonts]]
name = "Roboto Mono"
sizes = [300, 400, 600, 700]
type = "monospace"
# All logos are in static/img/logos
[params.logos]
navbar = "keda-horizontal-color.png"
hero = "keda-icon-color.png"
footer = "keda-icon-white.png"
[mediaTypes."text/netlify"]
delimiter = ""
[outputFormats.REDIRECTS]
mediaType = "text/netlify"
baseName = "_redirects"
[outputs]
home = [ "HTML", "REDIRECTS" ]
# "Highlighted Samples" section on the main page
[[params.samples]]
title = "RabbitMQ and Go"
content = "RabbitMQ Consumer written in Go that is scaled with KEDA."
url = "https://github.com/kedacore/sample-go-rabbitmq"
icon = "fas fa-envelope"
[[params.samples]]
title = "Azure Functions and Queue"
content = "Azure Function that triggers on Azure Storage Queues."
url = "https://github.com/kedacore/sample-hello-world-azure-functions"
icon = "fas fa-bolt"
[[params.samples]]
title = "Python Jobs and Queues"
content = "Run a Python job for each queue message."
url = "https://github.com/tomconte/sample-keda-queue-jobs"
icon = "fas fa-clock"
# Social media buttons
[[params.social]]
name = "Twitter"
icon = "fab fa-twitter"
bg_color = "twitter-blue"
icon_color = "white"
text_color = "white"
url = "https://twitter.com/kedaorg"
[[params.social]]
name = "GitHub"
icon = "fab fa-github"
bg_color = "white"
icon_color = "black"
text_color = "black"
url = "https://github.com/kedacore/keda"
[[params.social]]
name = "Slack"
icon = "fab fa-slack"
bg_color = "slack-green"
icon_color = "white"
text_color = "white"
url = "https://kubernetes.slack.com/messages/CKZJ36A5D"
# Main page hero buttons
[[menu.buttons]]
url = "/docs/concepts"
name = "Concepts"
pre = "fas fa-stream"
weight = 1
[[menu.buttons]]
url = "/docs/deploy"
name = "Deploying KEDA"
pre = "fas fa-play-circle"
weight = 2
[[menu.buttons]]
url = "/docs/concepts/#architecture"
name = "Architecture"
pre = "fas fa-project-diagram"
weight = 3
[[menu.buttons]]
url = "/docs/scalers"
name = "Scalers"
pre = "fas fa-ruler-vertical"
weight = 4
[[menu.buttons]]
url = "/blog"
name = "Blog"
pre = "fa fa-rss"
weight = 5
# Navbar and footer menu
[[menu.docs]]
url = "/docs/"
name = "Docs"
identifier = "docs"
weight = 1
[[menu.docs]]
url = "/docs/deploy"
name = "Deploying KEDA"
parent = "docs"
weight = 1
[[menu.docs]]
url = "/docs/concepts/"
name = "Concepts"
parent = "docs"
weight = 2
[[menu.docs]]
url = "/docs/concepts/#architecture"
name = "Architecture"
parent = "docs"
weight = 3
[[menu.docs]]
url = "/docs/operate/"
name = "Operate"
parent = "docs"
weight = 4
[[menu.docs]]
url = "/docs/migration/"
name = "Migration Guide"
parent = "docs"
weight = 5
[[menu.docs]]
url = "/docs/faq/"
name = "FAQ"
parent = "docs"
weight = 6
[[menu.docs]]
url = "/docs/troubleshooting/"
name = "Troubleshooting"
parent = "docs"
weight = 7
[[menu.main]]
url = "/blog"
name = "Blog"
weight = 2
[[menu.main]]
url = "/community/"
name = "Community"
weight = 3
[[menu.main]]
name = "Project"
identifier = "project"
weight = 4
[[menu.main]]
url = "/resources/"
name = "Learning Resources"
parent = "project"
weight = 1
[[menu.main]]
url = "https://github.com/cncf/foundation/blob/master/code-of-conduct.md"
name = "Code of Conduct"
parent = "project"
weight = 2
[[menu.main]]
url = "https://github.com/kedacore/keda/blob/master/GOVERNANCE.md"
name = "Governance"
parent = "project"
weight = 3
[[menu.main]]
url = "https://github.com/kedacore/keda/blob/master/CONTRIBUTING.md"
name = "Contributing"
parent = "project"
weight = 4
[[menu.main]]
url = "https://github.com/kedacore/keda/blob/master/CHANGELOG.md"
name = "Changelog"
parent = "project"
weight = 5
[[menu.main]]
url = "https://github.com/kedacore/keda/blob/master/MAINTAINERS.md"
name = "Maintainers"
parent = "project"
weight = 6
[[menu.main]]
url = "https://branding.cncf.io/projects/keda"
name = "Colors and Logos"
parent = "project"
weight = 7
[[menu.main]]
url = "https://github.com/kedacore/keda/blob/master/LICENSE"
name = "License"
parent = "project"
weight = 7
[[menu.main]]
url = "https://github.com/kedacore/samples"
name = "Samples"
weight = 5
# "Features" section on the main page
[[params.features]]
title = "Event-driven"
content = "Intelligently scale your event-driven application"
icon = "fas fa-bolt"
[[params.features]]
title = "Autoscaling Made Simple"
content = "Bring rich scaling to every container in your [Kubernetes](https://kubernetes.io) cluster"
icon = "fas fa-rocket"
[[params.features]]
title = "Built-in Scalers"
content = "Out-of-the-box scalers for various vendors, databases, messaging systems, telemetry systems, and more"
icon = "fas fa-cubes"
[[params.features]]
title = "Multiple Workload Types"
content = "Support for variety of workload types such as deployments and jobs"
icon = "fas fa-shapes"
[[params.features]]
title = "Vendor-Agnostic"
content = "Support for triggers across multiple vendors"
icon = "fas fa-cloud"
[[params.features]]
title = "Azure Functions Support"
content = "Run and scale your Azure Functions on Kubernetes in production workloads"
icon = "fab fa-microsoft"
# "Users" section on the main page
[[params.users]]
url = "https://airflow.apache.org/"
logo = "apache-airflow.png"
[[params.users]]
url = "https://www.astronomer.io"
logo = "astronomer.svg"
[[params.users]]
url = "https://www.cloud-trade.com"
logo = "cloud-trade.png"
[[params.users]]
url = "https://coralogix.com/"
logo = "coralogix.gif"
[[params.users]]
url = "https://fission.io/"
logo = "fission.png"
[[params.users]]
url = "https://www.mivation.com"
logo = "mivation-inc.png"
[[params.users]]
url = "https://www.purefacts.com"
logo = "purefacts.png"
# "Community" section on the main page
[[params.community]]
url = "https://www.astronomer.io"
logo = "astronomer.svg"
[[params.community]]
url = "https://codit.eu"
logo = "codit.jpg"
[[params.community]]
url = "https://microsoft.com"
logo = "microsoft.png"
[[params.community]]
url = "https://redhat.com"
logo = "red-hat.png"