-
Notifications
You must be signed in to change notification settings - Fork 36
/
mkdocs.yml
153 lines (134 loc) · 4.38 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
149
150
151
152
153
---
site_name: Kubitect
repo_url: https://github.com/musicdin/kubitect
repo_name: MusicDin/kubitect
# Remove docs edit button
edit_uri: ""
theme:
name: material
custom_dir: docs/
favicon: assets/images/favicon.svg
logo: assets/images/logo_white.svg
font:
text: Ubuntu
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-night
name: Switch to system preference
features:
- content.code.annotate
#- content.tabs.link
- navigation.expand
- navigation.indexes
- navigation.instant
- navigation.sections
- navigation.tabs
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
icon:
repo: octicons/mark-github-16
admonition:
note: octicons/pencil-24
abstract: octicons/checklist-24
info: octicons/info-24
tip: octicons/light-bulb-24
success: octicons/check-24
question: octicons/question-24
warning: octicons/alert-24
failure: octicons/x-24
danger: octicons/zap-24
bug: octicons/bug-24
example: octicons/beaker-24
quote: octicons/quote-24
extra_css:
- assets/stylesheets/style.css
extra_javascript:
- assets/javascripts/extra.js
extra:
version:
provider: mike
default: latest
plugins:
- search
- minify:
minify_html: true
markdown_extensions:
- attr_list
- admonition
- md_in_html
- pymdownx.details
- pymdownx.superfences
- pymdownx.inlinehilite
# Content tabs
- pymdownx.tabbed:
alternate_style: true
# Emoji
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
# Page tree
# - pymdownx.highlight:
# linenums: true
# anchor_linenums: true
# linenums_style: pymdownx-inline
- toc:
permalink: "🔗︎" # Link symbol
permalink_title: Anchor link
nav:
- Home: index.md
- Getting started:
- Getting started:
- Introduction: getting-started/introduction.md
- Installation: getting-started/installation.md
- Requirements: getting-started/requirements.md
- Quick start: getting-started/quick-start.md
- Getting started (step-by-step): getting-started/getting-started.md
- Other:
- Local development: getting-started/other/local-development.md
- Troubleshooting: getting-started/other/troubleshooting.md
- User guide:
- User guide:
- Before you begin: user-guide/before-you-begin.md
- Cluster Management:
# - Creating the cluster: user-guide/management/creating.md
- Upgrading the cluster: user-guide/management/upgrading.md
- Scaling the cluster: user-guide/management/scaling.md
- Destroying the cluster: user-guide/management/destroying.md
- Configuration:
- Hosts: user-guide/configuration/hosts.md
- Cluster name: user-guide/configuration/cluster-name.md
- Cluster network: user-guide/configuration/cluster-network.md
- Cluster node template: user-guide/configuration/cluster-node-template.md
- Cluster nodes: user-guide/configuration/cluster-nodes.md
- Kubernetes: user-guide/configuration/kubernetes.md
- Addons: user-guide/configuration/addons.md
- Reference:
- Configuration reference: user-guide/reference/configuration.md
- CLI tool reference: user-guide/reference/cli.md
- Examples:
- Cluster Topologies:
- Single node cluster: examples/single-node-cluster.md
- Multi-worker cluster: examples/multi-worker-cluster.md
- Multi-master cluster: examples/multi-master-cluster.md
- Highly available (HA) cluster: examples/ha-cluster.md
- Storage:
- Rook cluster: examples/rook-cluster.md
- Other:
- Accessing the cluster: examples/accessing-cluster.md
- Network bridge: examples/network-bridge.md
# - Full example: examples/full-example.md