forked from cloud-native-canada/k8s_setup_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
75 lines (75 loc) · 2.06 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
65
66
67
68
69
70
71
72
73
74
75
site_name: KubeCon NA 2022 Tutorial - K8s Setup Tools
nav:
- Home: index.md
- Kubectl: kubectl.md
- Local Clusters:
- Podman: local_cluster/podman.md
- Kind: local_cluster/kind.md
- Other Options:
- Rancher Desktop: local_cluster/options/rancher.md
- Colima: local_cluster/options/colima.md
- MiniKube: local_cluster/options/minikube.md
- Deploying applications with kubectl: app_deployment.md
- Shell Setup: shell_setup.md
- Kubectl Tooling:
- Kubectl: kubectl_tooling/kubectl.md
- Kubecolor: kubectl_tooling/kubecolor.md
- Stern: kubectl_tooling/stern.md
- Kubectl Plugins: kubectl_tooling/krew.md
- Kubie: kubectl_tooling/kubie.md
- Cloud Kubernetes: cloud_commands.md
- Advanced Manifests Creation:
- kustomize: kustomize/kustomize.md
- helm: helm/helm.md
- Kubernetes Interface:
- K9s: interfaces/k9s.md
- Lens: interfaces/lens.md
- Octant: interfaces/octant.md
- KubeNav: interfaces/kubenav.md
- Development tooling:
- VsCode Extensions: dev_tooling/vscode.md
- Other apps: dev_tooling/apps.md
- Cleanup: cleanup/cleanup.md
- Mkdocs help and examples: mkdocs.md
theme:
features:
# - navigation.tabs
- content.tabs.link
favicon: images/kubecon_logo.jpeg
palette:
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
name: material
logo: 'images/kubecon_logo.jpeg'
extra_css:
- css/extra.css
extra:
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/cloudnativeca
markdown_extensions:
- admonition
- pymdownx.details
- codehilite:
guess_lang: false
- toc:
permalink: true
- footnotes
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.tabbed:
# slugify: !!python/object/apply:pymdownx.slugs.slugify
# kwds:
# case: lower
alternate_style: true
- tables
- attr_list
- md_in_html
- def_list
- pymdownx.tasklist:
custom_checkbox: true