forked from nautobot/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
109 lines (105 loc) · 3.98 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
98
99
100
101
102
103
104
105
106
107
108
109
---
# spell-checker: disable
dev_addr: "127.0.0.1:8001"
site_name: "Nautobot Helm Charts"
edit_uri: "edit/main/docs"
site_url: "https://docs.nautobot.com/projects/helm-charts/en/stable/"
repo_url: "https://github.com/nautobot/helm-charts"
copyright: "Copyright © Network To Code"
theme:
name: "material"
navigation_depth: 4
hljs_languages:
- "django"
- "yaml"
features:
- "navigation.tracking"
- "navigation.tabs"
- "navigation.tabs.sticky"
- "navigation.indexes"
- "search.suggest"
- "search.highlight"
- "search.share"
- "content.code.copy"
favicon: "assets/favicon.png"
logo: "assets/logo.png"
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: "default"
primary: "black"
toggle:
icon: "material/weather-sunny"
name: "Switch to dark mode"
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: "slate"
primary: "black"
toggle:
icon: "material/weather-night"
name: "Switch to light mode"
extra_css:
- "assets/extra.css"
extra:
generator: true
markdown_extensions:
- "admonition"
- "toc":
permalink: true
- "attr_list"
- "md_in_html"
- "pymdownx.highlight":
anchor_linenums: true
- "pymdownx.inlinehilite"
- "pymdownx.snippets"
- "pymdownx.superfences"
- "footnotes"
plugins:
- "search"
- "mkdocs-version-annotations"
nav:
- Overview: "index.md"
- Installation:
- Basic Installation: "installation/basic.md" # yamllint disable-line rule:indentation
- Production Installation: "installation/production.md"
- Dependencies: "installation/dependencies.md"
- Prerequisites: "installation/prerequisites.md"
- System Requirements: "installation/system-requirements.md"
- Advanced Usage:
- Overview: "advanced-features/index.md" # yamllint disable-line rule:indentation
- Additional Nautobots: "advanced-features/additional-nautobots.md"
- Celery Queues: "advanced-features/celery-queues.md"
- Custom Nautobot Image: "advanced-features/custom-image.md"
- Custom nautobot_config.py: "advanced-features/custom-nautobot-config.md"
- Custom uwsgi.ini: "advanced-features/custom-uwsgi.md"
- Existing Secrets: "advanced-features/existing-secrets.md"
- External Database: "advanced-features/external-database.md"
- External Redis: "advanced-features/external-redis.md"
- Initialization Job: "advanced-features/init-hook.md"
- Ingress: "advanced-features/ingress.md"
- MySQL Support: "advanced-features/mysql.md"
- Nautobot as a Subchart: "advanced-features/nautobot-as-subchart.md"
- Persistent Volumes for Files: "advanced-features/persistence.md"
- PostgreSQL High Availability: "advanced-features/postgresql-ha.md"
- PostgreSQL TLS: "advanced-features/postgresql-tls.md"
- Prometheus Operator Metrics: "advanced-features/prometheus-metrics.md"
- RabbitMQ Support: "advanced-features/rabbitmq.md"
- Redis Sentinel: "advanced-features/redis-sentinel.md"
- Redis TLS: "advanced-features/redis-tls.md"
- Static Files Only: "advanced-features/static-only.md"
- Operators Guide:
- Backup and Restore: "operations/backup-restore.md" # yamllint disable-line rule:indentation
- Invalidate Redis Cache: "operations/redis-cache.md"
- Upgrading: "operations/upgrading.md"
- Uninstall: "operations/uninstall.md"
- Reference:
- Configuration Reference: "configuration/reference.md" # yamllint disable-line rule:indentation
- Developer Guide:
- Local Development: "development/local-dev.md" # yamllint disable-line rule:indentation
- Contributing: "development/contributing.md"
- Release Checklist: "development/release-checklist.md"
- Testing: "development/testing.md"
- Comparing Templates: "development/comparing-templates.md"
- Release Notes:
- Version 2.x: "release-notes/version-2.x.md" # yamllint disable-line rule:indentation
- Version 1.x: "release-notes/version-1.x.md"