-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yaml
165 lines (156 loc) · 4.71 KB
/
mkdocs.yaml
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
# Project information
site_name: Ansible Workshop
site_author: Natron Tech AG
site_description: >-
Documentation and guides for the Ansible Workshop by Natron Tech AG.
# Repository
repo_url: https://github.com/natrontech/workshop-ansible
repo_name: natrontech/workshop-ansible
edit_uri: ""
# Copyright
copyright: Copyright © 2024 Natron Tech AG
# Page tree
nav:
- Home: index.md
- Ansible explained:
- explained/index.md
- Concepts: explained/concepts.md
- Files: explained/files.md
- Running Playbooks: explained/running-playbooks.md
- Indempotency: explained/indempotency.md
- Docs: explained/docs.md
- Setup:
- setup/index.md
- Development:
- setup/dev/index.md
- Control Node Setup: setup/dev/control-node.md
- Production:
- setup/prod/index.md
- Control Node Setup: setup/prod/control-node.md
- Directory Structure: setup/prod/directory-structure.md
- Connecting to hosts:
- setup/connecting/index.md
- Linux: setup/connecting/linux.md
- Windows: setup/connecting/windows.md
- Network devices: setup/connecting/network-devices.md
- Basics:
- basics/index.md
- Inventory:
- Creating: basics/inventory/create-inventory.md
- Variables: basics/inventory/variables.md
- Validating: basics/inventory/validate-inventory.md
- Tasks:
- Running your first tasks: basics/tasks/first-task.md
- Gather facts: basics/tasks/gather-facts.md
- Return: basics/tasks/return.md
- Handlers: basics/tasks/handlers.md
- Recap: basics/tasks/recap.md
- Tags: basics/tasks/tags.md
- Delegate: basics/tasks/delegate.md
- Check diff: basics/tasks/check-diff.md
- Control flow:
- Conditionals: basics/control-flow/contitionals.md
- Loop: basics/control-flow/loop.md
- Block: basics/control-flow/block.md
- Import and include: basics/control-flow/import.md
- Execution strategy: basics/control-flow/execution-strategy.md
- Secrets:
- Vault: basics/secrets/vault.md
- Modules:
- debug: basics/modules/debug.md
- template: basics/modules/template.md
- Jinja2:
- Variables: basics/jinja/variables.md
- Filter: basics/jinja/filter.md
- Advanced:
- advanced/index.md
- Linting:
- Ansible Lint: advanced/linting/ansible-lint.md
- Pre-commit hook: advanced/linting/precommit.md
- CI/CD:
- Gitlab: advanced/ci-cd/gitlab-ci.md
- Ansible Runner: advanced/ci-cd/ansible-runner.md
- Various:
- Quoting: advanced/various/quoting.md
- Global vars: advanced/various/global-vars.md
- Loop and when: advanced/various/combine-when-loop.md
- Loop until: advanced/various/loop-until.md
- Indempotency in command module: advanced/various/rc-in-command.md
- Examples:
- examples/index.md
- Cisco:
- ACL: examples/cisco/acl.md
- Interface: examples/cisco/interface.md
- Linux:
- DNS server: examples/linux/dns-server.md
- Users: examples/linux/users.md
- Update system: examples/linux/update-system.md
- Windows:
- Domain Setup: examples/windows/domain-setup.md
- DNS record: examples/windows/dns-record.md
# Configuration
theme:
favicon: assets/images/favicon.png
logo: assets/images/favicon.png
name: material
language: en
font:
text: Roboto
code: Roboto Mono
icon:
repo: fontawesome/brands/github
features:
- content.code.annotate
- navigation.indexes
- navigation.sections
- navigation.tabs
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- navigation.prune
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: indigo
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: indigo
toggle:
icon: material/toggle-switch
name: Switch to light mode
# Plugins
plugins:
- search:
lang: en
# Customization
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/natrontech
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/natron-gmbh
# Markdown extensions
markdown_extensions:
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- attr_list
- md_in_html
- attr_list
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
- pymdownx.superfences
- def_list
- pymdownx.tasklist:
custom_checkbox: true
- footnotes