-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmkdocs.yml
148 lines (148 loc) · 6.06 KB
/
mkdocs.yml
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
site_name: Kuadrant Documentation
site_url: https://docs.kuadrant.io/
repo_url: https://github.com/kuadrant/docs.kuadrant.io
edit_uri: edit/main/docs/
extra:
version:
provider: mike
default:
- latest
theme:
name: material
logo: assets/images/logo.png
custom_dir: overrides
features:
- content.action.edit
- content.code.copy
extra_css:
- assets/stylesheets/extra.css
watch:
- overrides
markdown_extensions:
- mdx_breakless_lists
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- attr_list
- md_in_html
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- footnotes
- admonition
- pymdownx.details
- toc:
permalink: true
plugins:
- mike:
alias_type: symlink
redirect_template: null
deploy_prefix: ''
canonical_version: null
version_selector: true
css_dir: css
javascript_dir: js
- search
- multirepo:
cleanup: true
keep_docs_dir: true
nav_repos:
- name: kuadrant-operator
import_url: 'https://github.com/kuadrant/kuadrant-operator?edit_uri=/blob/main/&branch=main'
imports:
- /README.md
- /doc/*
- /config/samples/*
- /examples/*
- name: authorino
import_url: 'https://github.com/kuadrant/authorino?edit_uri=/blob/main/&branch=main'
imports:
- /README.md
- /docs/*
- /docs/user-guides/*
- /install/crd/*
- name: authorino-operator
import_url: 'https://github.com/kuadrant/authorino-operator?edit_uri=/blob/main/&branch=main'
imports:
- /README.md
- name: limitador
import_url: 'https://github.com/kuadrant/limitador?edit_uri=/blob/main/&branch=main'
imports:
- /README.md
- /doc/*
- /limitador-server/README.md
- /limitador-server/docs/*
- /limitador/README.md
- /limitador-server/kubernetes/*
- /limitador-server/sandbox/*
- /LICENSE
- name: limitador-operator
import_url: 'https://github.com/kuadrant/limitador-operator?edit_uri=/blob/main/&branch=main'
imports:
- /README.md
- /doc/*
- name: architecture
import_url: 'https://github.com/kuadrant/architecture?edit_uri=/blob/main/&branch=main'
imports:
- /docs/design/*
- name: kuadrantctl
import_url: 'https://github.com/kuadrant/kuadrantctl?edit_uri=/blob/main/&branch=main'
imports:
- /README.md
- /doc/*
- name: dns-operator
import_url: 'https://github.com/kuadrant/dns-operator?edit_uri=/blob/main/&branch=main'
imports:
- /README.md
- /docs/*
- /config/samples/*
nav:
- 'Overview': index.md
- 'Getting Started': getting-started.md
- 'Installation':
- 'Install with Helm': install-helm.md
- 'Install with OLM': install-olm.md
- 'Concepts':
- 'Architecture': architecture/docs/design/architectural-overview-v1.md
- 'DNSPolicy': kuadrant-operator/doc/overviews/dns.md
- 'TLSPolicy': kuadrant-operator/doc/overviews/tls.md
- 'AuthPolicy': kuadrant-operator/doc/overviews/auth.md
- 'RateLimitPolicy': kuadrant-operator/doc/overviews/rate-limiting.md
- 'APIs & Reference':
- 'DNSPolicy': kuadrant-operator/doc/reference/dnspolicy.md
- 'TLSPolicy': kuadrant-operator/doc/reference/tlspolicy.md
- 'AuthPolicy': kuadrant-operator/doc/reference/authpolicy.md
- 'RateLimitPolicy': kuadrant-operator/doc/reference/ratelimitpolicy.md
- 'Kuadrant': kuadrant-operator/doc/reference/kuadrant.md
- 'Observability':
- 'Metrics': kuadrant-operator/doc/observability/metrics.md
- 'Authentication and Authorization': authorino/docs/user-guides/observability.md
- 'Tutorials':
- 'Secure, connect and protect': kuadrant-operator/doc/user-guides/full-walkthrough/secure-protect-connect.md
- 'Gateway TLS for Cluster Operators': kuadrant-operator/doc/user-guides/tls/gateway-tls.md
- 'Enforcing authentication & authorization with Kuadrant AuthPolicy': kuadrant-operator/doc/user-guides/auth/auth-for-app-devs-and-platform-engineers.md
- 'Gateway Rate Limiting for Cluster Operators': kuadrant-operator/doc/user-guides/ratelimiting/gateway-rl-for-cluster-operators.md
- 'Authenticated Rate Limiting for Application Developers': kuadrant-operator/doc/user-guides/ratelimiting/authenticated-rl-for-app-developers.md
- 'Authenticated Rate Limiting with JWTs and Kubernetes RBAC': kuadrant-operator/doc/user-guides/ratelimiting/authenticated-rl-with-jwt-and-k8s-authnz.md
- 'Gateway Rate Limiting': kuadrant-operator/doc/user-guides/ratelimiting/multi-auth-rlp-diff-section.md
- 'Multi authenticated Rate Limiting for an Application': kuadrant-operator/doc/user-guides/ratelimiting/multi-auth-rlp-same-section.md
- 'Guides':
- 'DNS configuration':
- 'Configuring a DNS Provider': dns-operator/docs/provider.md
- 'Gateway DNS for ingress Gateway': kuadrant-operator/doc/user-guides/dns/gateway-dns.md
- 'Basic DNS': kuadrant-operator/doc/user-guides/dns/basic-dns-configuration.md
- 'DNS Load Balancing': kuadrant-operator/doc/user-guides/dns/load-balanced-dns.md
- 'Health Checks': kuadrant-operator/doc/user-guides/dns/dnshealthchecks.md
- 'mTLS Configuration': kuadrant-operator/doc/install/mtls-configuration.md
- 'Observability':
- 'Dashboards and Alerts': kuadrant-operator/doc/observability/examples.md
- 'Tracing': kuadrant-operator/doc/observability/tracing.md