generated from onedr0p/cluster-template
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmkdocs.yaml
87 lines (79 loc) · 2.08 KB
/
mkdocs.yaml
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
---
# Project information
site_name: dfroberg | Home Cluster
site_description: My home Kubernetes (k3s) cluster managed by GitOps (Flux2)
site_author: Danny Froberg
site_url: https://dfroberg.github.io/cluster/
# Repository
repo_name: dfroberg/cluster
repo_url: https://gitlab.froberg.org/dfroberg/cluster
edit_uri: "edit/main/docs/"
theme:
name: material
icon:
repo: fontawesome/brands/github-alt
language: en
features:
- navigation.sections
- navigation.tracking
- search.highlight
- search.share
- search.suggest
palette:
- scheme: default
primary: blue
accent: indigo
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: blue
accent: indigo
toggle:
icon: material/weather-sunny
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
docs_dir: ./docs
# Customization
extra_css:
- _static/custom.css
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/dfroberg
- icon: fontawesome/brands/discord
link: https://discord.gg/sTMX7Vh
- icon: fontawesome/brands/twitter
link: https://twitter.com/dfroberg
# Plugins
plugins:
- search:
lang: en
- minify:
minify_html: true
- macros:
include_dir: docs/_snippets
# Extensions
markdown_extensions:
- admonition
- attr_list
- toc:
permalink: true
# Navigation structure
nav:
- Introduction: index.md
- Installation:
- Guidelines: installation/guidelines.md
- Preparing Nodes: installation/preparing-nodes.md
- Installing Kubernetes: installation/installing-kubernetes.md
- Bootstrap Applications: installation/bootstrap-applications.md
- Networking:
- General: networking/general.md
- DNS: networking/dns.md
- Storage:
- Backing up data manually: storage/manual-data-backup.md
- Restoring data manually: storage/manual-data-restore.md
- Backing up data using Kasten: storage/kasten-data-backup.md
- Restoring data with Kasten: storage/kasten-data-restore.md