forked from aristanetworks/avd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
176 lines (168 loc) · 6.75 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
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
# Project information
site_name: Arista AVD collection
site_author: Arista Ansible Team
site_description: Arista Validated Design collection's documentation
copyright: Copyright © 2019 - 2022 Arista Networks
# Repository information
repo_name: AVD on Github
repo_url: https://github.com/aristanetworks/ansible-avd
# Configuration
use_directory_urls: false
edit_uri: ""
theme:
name: material
# custom_dir: ansible_collections/arista/avd/docs/_overrides
features:
- navigation.instant
- navigation.top
- search.highlight
- header.autohide
- content.code.annotate
- content.tabs.link
highlightjs: true
icon:
repo: fontawesome/brands/github
logo: fontawesome/solid/book
favicon: docs/_media/favicon.ico
font:
code: Fira Mono
language: en
include_search_page: false
search_index_only: true
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-night
name: Switch to light mode
extra:
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/aristanetworks/ansible-avd
# - icon: fontawesome/brands/twitter
# link: https://twitter.com/AristaNetworks
- icon: fontawesome/solid/globe
link: https://www.arista.com
extra_css:
- docs/stylesheets/extra.material.css
extra_javascript:
- https://unpkg.com/[email protected]/dist/tablesort.min.js
- docs/stylesheets/tables.js
plugins:
- search:
lang: en
- git-revision-date-localized:
type: date
# Deactivated due to https://github.com/tikitu/jsmin/issues/33
# Issue in progress: https://github.com/byrnereese/mkdocs-minify-plugin/issues/15
# - minify:
# minify_html: true
# minify_js: true
markdown_extensions:
- admonition
- fontawesome_markdown
- mdx_truly_sane_lists
- smarty
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets:
base_path: 'ansible_collections/arista/avd/'
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- tables
- toc:
separator: "-"
permalink: true
# TOC
docs_dir: ansible_collections/arista/avd/
nav:
- Home: README.md
- Getting Started:
- Introduction to Ansible and AVD: docs/getting-started/intro-to-ansible-and-avd.md
- Example for Single DC L3LS: examples/single-dc-l3ls/README.md
- Example for L2LS Fabric: examples/l2ls-fabric/README.md
- Installation:
- Collection Installation: docs/installation/collection-installation.md
- Requirements: docs/installation/requirements.md
- How-To:
- Build Your First AVD Project: docs/how-to/first-project.md
- Build Your First AVD & CVP Project: docs/how-to/first-cvp-avd-project.md
- Use NAT Gateway With eAPI: docs/how-to/lab-with-nat.md
- AWX & Tower Integration: docs/how-to/tower-integration.md
- Configure ZTP Server With CVP Collection: docs/how-to/ztp.md
- Setup Ansible AVD With VS Code Container: docs/how-to/vscode-container.md
- Validation of Input Variables (BETA): docs/input-variable-validation-BETA.md
- Roles Documentation:
- eos_designs:
- Overview: roles/eos_designs/README.md
- Connected Endpoints: roles/eos_designs/doc/connected-endpoints.md
- DCI & L3 Edge: roles/eos_designs/doc/l3-edge.md
- Fabric Topology: roles/eos_designs/doc/fabric-topology.md
- Fabric Variables: roles/eos_designs/doc/fabric-variables.md
- Management Settings: roles/eos_designs/doc/management-settings.md
- Network Services: roles/eos_designs/doc/network-services.md
- Node Types: roles/eos_designs/doc/node-types.md
- Platform Specific Settings: roles/eos_designs/doc/platform-settings.md
- Custom Structured Configuration: roles/eos_designs/doc/custom-structured-configuration.md
- MPLS Design (BETA):
- Fabric Topology MPLS (BETA): roles/eos_designs/doc/fabric-topology-mpls-BETA.md
- Fabric Variables MPLS (BETA): roles/eos_designs/doc/fabric-variables-mpls-BETA.md
- Core Interfaces (BETA): roles/eos_designs/doc/core-interfaces-BETA.md
- Network Services MPLS (BETA): roles/eos_designs/doc/network-services-mpls-BETA.md
- Connected Endpoints MPLS (BETA): roles/eos_designs/doc/connected-endpoints-mpls-BETA.md
- eos_cli_config_gen: roles/eos_cli_config_gen/README.md
- cvp_configlet_upload: roles/cvp_configlet_upload/README.md
- eos_config_deploy_cvp: roles/eos_config_deploy_cvp/README.md
- eos_config_deploy_eapi: roles/eos_config_deploy_eapi/README.md
- eos_validate_state: roles/eos_validate_state/README.md
- eos_snapshot: roles/eos_snapshot/README.md
- dhcp_provisioner: roles/dhcp_provisioner/README.md
- build_output_folders: roles/build_output_folders/README.md
- Modules Documentation:
- Module Inventory to Containers: docs/modules/inventory_to_container.rst.md
- Module Configlet Build Configuration: docs/modules/configlet_build_config.rst.md
- AVD Plugins & Filters: plugins/README.md
- CloudVision Module Documentation: https://cvp.avd.sh/
- Contributing to AVD:
- Overview: docs/contribution/overview.md
- Setup Environment: docs/contribution/setup-environment.md
- Git Installation: docs/contribution/setup-git.md
- Getting Started: docs/contribution/getting-started.md
- Code Style: docs/contribution/style-guide.md
- Development Tips & Tricks: docs/contribution/development.md
- External Resources:
- Ansible Collection User Guide: https://docs.ansible.com/ansible/latest/user_guide/collections_using.html
- Ansible User Guide: https://docs.ansible.com/ansible/latest/user_guide/index.html
- Release Notes:
- 3.x.x: docs/release-notes/3.x.x.md
- 2.x.x: docs/release-notes/2.x.x.md
- 1.1.x: docs/release-notes/1.1.x.md
- 1.0.x: docs/release-notes/1.0.x.md
- About:
- AVD on Ansible Galaxy: https://galaxy.ansible.com/arista/avd
- Arista CVP Collection: https://cvp.avd.sh/en/latest/
- Arista Installation Script: https://github.com/arista-netdevops-community/avd-install
- Arista NetDevOps Community: https://aristanetworks.github.io/netdevops-examples/