-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathmkdocs.yml
More file actions
261 lines (245 loc) · 8.78 KB
/
mkdocs.yml
File metadata and controls
261 lines (245 loc) · 8.78 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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
###
### mkdocs-theme.yml
###
copyright:
'©2021-2026 Nir Geier<br/><a href="https://visitor-badge.laobi.icu/badge?page_id=nirgeier" target="_blank" rel="noopener"><img
src="https://visitor-badge.laobi.icu/badge?page_id=nirgeier" alt="Visitor Badge"></a>'
theme:
name: material
custom_dir: mkdocs/overrides
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.code.select
- content.footnote.tooltips
- content.tabs.link
- content.tooltips
- content.footer.last-updated
- content.footer.contributors
- navigation.expand: false
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
- navigation.prune
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top: true
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
- toc.integrate
- toc.sticky
#- header.autohide # Disabled to keep top nav always visible
# 👈 enables avatar display
palette:
# Dark mode only
- scheme: slate
primary: indigo # You can choose any color here
font:
text: Mulish
code: JetBrains Mono
favicon: assets/favicon.png
icon:
logo: logo
repo: fontawesome/brands/github
admonition:
note: material/lightbulb
###
### mkdocs-nav.yml
###
nav:
- Start Here: welcome.md
- Getting Started:
- index.md
- 00 Verify Cluster: 00-VerifyCluster/README.md
- 01 Namespace: 01-Namespace/README.md
- 02 Deployments Imperative: 02-Deployments-Imperative/README.md
- 03 Deployments Declarative: 03-Deployments-Declarative/README.md
- 04 Rollout: 04-Rollout/README.md
- 20 CronJob: 20-CronJob/README.md
- Networking:
- 05 Services: 05-Services/README.md
- 07 Nginx Ingress: 07-nginx-Ingress/README.md
- 10 Istio: 10-Istio/README.md
- 37 NetworkPolicies: 37-NetworkPolicies/README.md
- Security:
- 31 RBAC: 31-RBAC/README.md
- 32 Secrets: 32-Secrets/README.md
- 33 NetworkPolicies: 33-NetworkPolicies/README.md
- 37 ResourceQuotas & LimitRanges: 37-ResourceQuotas/README.md
- Storage & Config:
- 06 DataStore & Secret Management: 06-DataStore/README.md
- 08 Kustomization: 08-Kustomization/README.md
- 09 StatefulSet: 09-StatefulSet/README.md
- 12 Wordpress MySQL PVC: 12-Wordpress-MySQL-PVC/README.md
- Observability:
- 14 Logging: 14-Logging/README.md
- 15 Prometheus Grafana: 15-Prometheus-Grafana/README.md
- 29 EFK Stack: 29-EFK/README.md
- GitOps & CI/CD:
- 13 HelmChart: 13-HelmChart/README.md
- 18 ArgoCD: 18-ArgoCD/README.md
- 23 HelmOperator: 23-HelmOperator/README.md
- 26 Kubeapps: 26-kubeapps/README.md
- Advanced:
- 11 CRD Custom Resource Definition: 11-CRD-Custom-Resource-Definition/README.md
- 16 Affinity Taint Toleration: 16-Affinity-Taint-Tolleration/README.md
- 17 PodDisruptionBudgets PDB: 17-PodDisruptionBudgets-PDB/README.md
- 19 CustomScheduler: 19-CustomScheduler/README.md
- 21 KubeAPI: 21-KubeAPI/README.md
- 24 Kubebuilder: 24-kubebuilder/README.md
- 25 Krew: 25-krew/README.md
- 27 kubeadm: 27-kubeadm/README.md
- 28 Telepresence: 28-Telepresence/README.md
- 30 KEDA: 30-Keda/README.md
- 34 crictl: 34-crictl/README.md
- 36 kubectl Deep Dive: 36-kubectl-Deep-Dive/README.md
- Tasks:
- Overview: Tasks/index.md
- CLI Tasks: Tasks/Kubernetes-CLI-Tasks/README.md
- Service Tasks: Tasks/Kubernetes-Service-Tasks/README.md
- Helm Tasks: Tasks/Kubernetes-Helm-Tasks/README.md
- ArgoCD Tasks: Tasks/Kubernetes-ArgoCD-Tasks/README.md
- Scheduling Tasks: Tasks/Kubernetes-Scheduling-Tasks/README.md
- Kubebuilder Tasks: Tasks/Kubernetes-Kubebuilder-Tasks/README.md
- KEDA Tasks: Tasks/Kubernetes-KEDA-Tasks/README.md
- Harbor + ArgoCD Airgap Tasks: Tasks/Kubernetes-Harbor-ArgoCD-Airgap-Tasks/README.md
###
### mkdocs-site.yml
###
docs_dir: Labs
edit_uri: ""
repo_name: nirgeier/KubernetesLabs
repo_url: https://github.com/nirgeier/KubernetesLabs
site_author: Nir Geier - nirgeier@gmail.com
site_description: A collection of Kubernetes Labs for learning and practicing Kubernetes skills.
site_dir: ./mkdocs-site
site_name: KubernetesLabs
site_url: https://nirgeier.github.io/KubernetesLabs/
###
### mkdocs-extra.yml
###
extra:
assets:
- ./assets/images/
generator: false
social:
- icon: fontawesome/brands/github
link: https://github.com/nirgeier/KubernetesLabs
name: View on GitHub
class: social-class__github
- icon: octicons/repo-forked-16
link: https://github.com/nirgeier/KubernetesLabs/network/members
name: Fork this repo
class: social-class__fork
- icon: octicons/star-16
link: https://github.com/nirgeier/KubernetesLabs/stargazers
name: Star this repo
class: social-class__star
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/nirgeier/
name: Connect on LinkedIn
class: social-class__linkedin
- icon: fontawesome/brands/discord
link: https://discord.gg/U6xW23Ss
name: Follow me on Discord
class: social-class__discord
- icon: fontawesome/brands/stack-overflow
link: https://stackoverflow.com/users/1755598/codewizard
name: Follow me on Stack Overflow
class: social-class__stackoverflow
- icon: fontawesome/brands/whatsapp
link: https://wa.me/972548122310
name: Follow me on WhatsApp
class: social-class__whatsapp
- icon: fontawesome/solid/envelope
link: mailto:nirg@codewizard.co.il
name: Email me
class: social-class__email
extra_css:
- ./assets/stylesheets/codewizard.css?v=1772199666
extra_javascript:
- https://buttons.github.io/buttons.js?v=1772199666
- https://unpkg.com/mermaid@11/dist/mermaid.esm.min.mjs
###
### mkdocs-extensions.yml
###
markdown_extensions:
- toc:
permalink: true
baselevel: 1
toc_depth: 3
- abbr
- tables
- admonition # For callouts/notes
- footnotes # Footnotes support
- attr_list # Attribute lists for elements
- def_list # Definition lists
- md_in_html # Markdown inside HTML blocks
- smarty # Smart punctuation
- meta
- codehilite:
guess_lang: true # Fallback code highlighting
- pymdownx.tabbed:
alternate_style: true
- pymdownx.details # Collapsible details
- pymdownx.inlinehilite # Inline code highlighting
- pymdownx.keys # Keyboard key formatting
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.tilde # Subscript/superscript
- pymdownx.snippets # Snippet includes
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
###
### mkdocs-plugins.yml
###
plugins:
- awesome-pages
- meta
# - pdf-export:
# combined: true # all pages in one PDF
# combined_output_path: docs/Full-Documentation.pdf
# media_type: print
# verbose: true
# Git
#- git-authors
- git-committers:
branch: main
docs_path: Labs # set if your docs folder is not root
enabled: true
repository: nirgeier/KubernetesLabs
- git-revision-date-localized:
enable_creation_date: true
enable_git_follow: false
fallback_to_build_date: true
locale: en
timezone: UTC
type: date
- search:
separator: '[\s\u200b\-_,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
- minify:
minify_html: true
# Leave this one as the last one in the list
- print-site
- include-markdown