-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
64 lines (60 loc) · 1.76 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
site_name: K3S Cluster
repo_url: https://github.com/febus982/k3s-cluster
repo_name: febus982/k3s-cluster
nav:
- Home: index.md
- Improvements since the first version: improvements_since_first_version.md
- Network design: network.md
- Preparation: preparation.md
- K3S nodes setup: k3s_nodes.md
- Maintenance operations: maintenance.md
- Legacy documentation:
- Introduction: legacy/index.md
- Network design: legacy/network.md
- Preparation: legacy/preparation.md
- Load balancers setup: legacy/load_balancers.md
- K3S nodes setup: legacy/k3s_nodes.md
- Maintenance operations: legacy/maintenance.md
markdown_extensions:
- pymdownx.snippets
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:mermaid2.fence_mermaid
theme:
icon:
repo: fontawesome/brands/github
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue
accent: blue
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
toggle:
icon: material/toggle-switch
name: Switch to light mode
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/febus982/flux-k3s-cluster
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/federico-b-a0b78232/
version:
default: stable
provider: mike
plugins:
- search
- mermaid2:
arguments:
theme: |
^(JSON.parse(window.localStorage.getItem('/.__palette')).index == 1) ? 'dark' : 'neutral'
extra_javascript:
- extra/refresh_on_toggle_dark_light.js