-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
mkdocs.yml
97 lines (97 loc) · 3.91 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
site_name: k8s-cleaner
copyright: Copyright © 2022 projectsveltos. All Rights Reserved.
site_description: 'The k8s-cleaner (Kubernetes Conrtoller Cleaner) identifies, removes, or updates stale/orphaned or unhealthy resources to maintain a clean and efficient Kubernetes cluster'
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- attr_list
- md_in_html
- footnotes
- pymdownx.critic
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
nav:
- What is k8s-cleaner?: 'index.md'
- Getting Started:
- Installation:
- Install: 'getting_started/install/install.md'
- Install on Multiple Clusters with Sveltos: 'getting_started/install/install_on_multiple_cluster.md'
- Telemetry: 'getting_started/install/telemetry.md'
- Features:
- Dry Run: 'getting_started/features/dryrun/dryrun.md'
- Label Filters: 'getting_started/features/label_filters/label_filters.md'
- Schedule: 'getting_started/features/schedule/schedule.md'
- Store Resources: 'getting_started/features/store_resources/store_resource_yaml.md'
- Update Resources: 'getting_started/features/update_resources/update_resources.md'
- Resource Selection: 'getting_started/features/resourceselector/resourceselector.md'
- Automated Operations: 'getting_started/features/automated_operations/scale_up_down_resources.md'
- Examples:
- Unused Resources:
- Example - ConfigMap: 'getting_started/examples/unused_resources/configmap.md'
- Example - Secret: 'getting_started/examples/unused_resources/secret.md'
- Example - PersistentVolume: 'getting_started/examples/unused_resources/persistent_volume.md'
- Example - PersistentVolumeClaim: 'getting_started/examples/unused_resources/persistent_volume_claims.md'
- Example - Jobs: 'getting_started/examples/unused_resources/jobs.md'
- More Examples: 'getting_started/examples/unused_resources/more_examples.md'
- Unhealthy Resources:
- Example - Unhealthy Deployments: 'getting_started/examples/unhealthy_resources/deployment.md'
- Example - Outdated Secret Data: 'getting_started/examples/unhealthy_resources/outdated_secret_data.md'
- Example - Pod with Expired Certificates: 'getting_started/examples/unhealthy_resources/pod_expired_certs.md'
- More Examples: 'getting_started/examples/unhealthy_resources/more_examples.md'
- Reports: 'reports/k8s-cleaner_reports.md'
- Notifications: 'notifications/notifications.md'
- Blogs and videos: 'resources/blogs.md'
theme:
icon:
previous: fontawesome/solid/angle-left
next: fontawesome/solid/angle-right
features:
- content.code.copy
- search.share
- navigation.footer
- navigation.instant.progress
- content.code.annotate
name: material
logo: assets/logo.png
palette:
- scheme: default
primary: white
accent: blue
toggle:
icon: material/toggle-switch
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: white
accent: blue
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
repo_url: https://github.com/gianlucam76/k8s-cleaner
repo_name: k8s-cleaner
extra:
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/projectsveltos
name: squidfunk on Twitter
link: https://join.slack.com/t/projectsveltos/shared_invite/zt-1hraownbr-W8NTs6LTimxLPB8Erj8Q6Q
- icon: fontawesome/brands/github
link: https://github.com/projectsveltos
- icon: fontawesome/brands/medium
link: https://medium.com/@gianluca.mardente
- icon: fontawesome/brands/product-hunt
link: https://www.producthunt.com/products/projectsveltos
extra_css:
- stylesheets/extra.css
plugins:
- search
extra_javascript:
- javascripts/extra.js