generated from onedr0p/cluster-template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
mkdocs.yaml
82 lines (74 loc) · 1.94 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
---
# Project information
site_name: ahgraber | Home Cluster
site_description: My home Kubernetes (k3s) cluster managed by GitOps (Flux2)
site_author: Alex Graber
site_url: https://ahgraber.github.io/homelab-gitops-k3s/
# Repository
repo_name: ahgraber/homelab-gitops-k3s
repo_url: https://github.com/ahgraber/homelab-gitops-k3s
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/ahgraber
# Plugins
plugins:
- search:
lang: en
- minify:
minify_html: true
# - macros:
# include_dir: docs/_snippets
# Extensions
markdown_extensions:
- admonition
- attr_list
- toc:
permalink: true
# prettier-ignore
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
# Navigation structure
nav:
- Introduction: index.md # formerly hardlinked to README.md
- Installation:
- Prerequisites: 1-prerequisites.md
- Install k3s with ansible: 2-install_k3s_with_ansible.md
- GitOps with Flux: 3-gitops_with_flux.md
- Troubleshooting:
- Troubleshooting flux: troubleshooting/troubleshooting_flux.md
- Troubleshooting nodes: troubleshooting/troubleshooting_nodes.md
- Troubleshooting services: troubleshooting/troubleshooting_services.md