-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathmkdocs.yml
More file actions
156 lines (140 loc) · 4.08 KB
/
Copy pathmkdocs.yml
File metadata and controls
156 lines (140 loc) · 4.08 KB
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
154
155
156
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: Talm
site_url: https://talm.cozystack.io
site_author: Cozystack Authors
site_description: >-
Manage Talos Linux the GitOps way. Talm renders per-node machine configs from
Go templates, discovers each node's real disks and interfaces, and applies the
result with the flags you already know from talosctl.
repo_name: cozystack/talm
repo_url: https://github.com/cozystack/talm
edit_uri: edit/main/docs/
copyright: Copyright © 2026 Cozystack Authors
# docs/manual-test-plan.md is an internal QA script, not user documentation.
# Leaving it out of the nav is not enough: MkDocs would still copy it into the
# site and index it for search. Patterns follow the gitignore format.
exclude_docs: |
manual-test-plan.md
theme:
name: material
language: en
logo: assets/logo.svg
favicon: assets/favicon.svg
# Brand colours are not in Material's named palettes, so both schemes use
# `custom` and take their values from stylesheets/extra.css.
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-4
name: Switch to auto mode
font:
text: Montserrat
code: Roboto Mono
features:
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tabs.link
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.instant.progress
- navigation.sections
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
icon:
repo: fontawesome/brands/github
edit: material/pencil
view: material/eye
plugins:
- search:
lang: en
# The CLI reference is generated from the cobra command tree, so its page
# list changes whenever a command is added — including on a Talos bump, since
# talm wraps talosctl's commands. A glob keeps that out of this file.
- awesome-nav
- git-revision-date-localized:
enable_creation_date: true
type: timeago
fallback_to_build_date: true
- minify:
minify_html: true
# --strict fails the build on WARNINGS, and MkDocs reports a dead anchor, an
# unrecognized link and a page missing from the nav at INFO — only a broken
# link to a PAGE warns by default. Raising these three is what makes the CI
# gate mean what it claims: a cross-reference lost while splitting a page
# fails the build instead of shipping.
validation:
anchors: warn
unrecognized_links: warn
nav:
omitted_files: warn
not_found: warn
use_directory_urls: true
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- toc:
permalink: true
toc_depth: 3
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: cozystack
repo: talm
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
combine_header_slug: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/cozystack/talm
name: GitHub
- icon: material/web
link: https://cozystack.io
name: Cozystack
generator: false
extra_css:
- stylesheets/extra.css