-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathmkdocs.yml
282 lines (274 loc) · 10.5 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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
# Project information
site_name: 'Ansible wiki'
site_description: 'ansible,wiki,ops,devops,auto,运维自动化'
site_author: 'lework'
site_url: 'https://ansible.leops.cn'
# Repository
repo_name: 'leops-china/ansible-wiki'
repo_url: 'https://github.com/leops-china/ansible-wiki'
# Copyright
copyright: 'Copyright © 2020 - 2020 leops'
# Configuration
theme:
name: 'material'
language: 'zh'
features:
- navigation.tabs
palette:
scheme: default
primary: 'indigo'
accent: 'indigo'
font:
text: 'Roboto'
code: 'Roboto Mono'
plugins:
- search
- minify:
minify_html: true
- git-revision-date-localized:
type: iso_datetime
# Customization
extra:
utteranc:
repo: leops-china/ansible-wiki
issueTerm: pathname
theme: github-light
social:
- icon: fontawesome/brands/github-alt
link: 'https://github.com/leops-china/ansible-wiki'
# Google Analytics
#google_analytics:
# - 'UA-XXXXXXXX-X'
# - 'auto'
# Extensions
markdown_extensions:
- admonition
- abbr
- attr_list
- def_list
- footnotes
- meta
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:pymdownx.emoji.twemoji
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.highlight:
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: leops-china
repo: ansible-wiki
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.tabbed
nav:
- 'Home': index.md
- 'Ansible 资源': resources.md
- '赞赏支持': appreciate.md
- 'Ansible 入门':
- '1. Ansible 介绍': basic/Introduction.md
- '2. 安装 Ansible': basic/Installation.md
- '3. 快速开始': basic/Quickstart.md
- '4. 认识主机清单': basic/Inventory.md
- '5. Patterns 匹配': basic/Patterns.md
- '6. 使用 ad-hoc 命令': basic/Ad-hoc.md
- '7. 熟悉 ansible 命令': basic/Ansible-command.md
- '8. 使用 Playbook': basic/Playbook.md
- '9. 包含和角色': basic/Include-roles.md
- '10. 使用变量': basic/Variables.md
- '11. Facts 数据': basic/Facts.md
- '12. Jinja2 模板语法': basic/Jinja2.md
- '13. 条件判断与循环': basic/Conditionals-loop.md
- '14. Blocks': basic/Blocks.md
- '15. Playbook 高级特性': basic/Playbook-features.md
- '扩展阅读(深入必读)':
- '1. YAML 语法': basic/Reference/Yaml.md
- '2. Vaults 加密数据': basic/Reference/Vaults.md
- '3. 关键字使用': basic/Reference/Keywords.md
- '4. 模块索引': basic/Reference/Module.md
- '5. Ansible 配置': basic/Reference/Config.md
- 'Windows':
- '1. 管理 Windows 主机': basic/Windows/manager-windows.md
- 'Ansible 进阶':
- 'Ansible 优化': advanced/optimization.md
- 'Ansible 的常用设置': advanced/ansible-config.md
- 'Ansible 最佳实践': advanced/best-practices.md
- '使用 Ansible-lint': advanced/ansible-lint.md
- '使用动态主机': advanced/dynamic-hosts.md
- '使用动态主机管理云服务': advanced/dynamic-inventory.md
- 'Ansible 安全':
- 'Ansible 控制节点安全': advanced/security/index.md
- '- 节点安全: 防火墙设置': advanced/security/firewall.md
- '- 节点安全: ssh登录二次验证': advanced/security/ssh-2step.md
- '- 节点安全: 命令审计': advanced/security/audit.md
- '- 节点安全: 加密主机清单': advanced/security/vault-hosts.md
- 过滤 Ansible 危险指令: advanced/security/filter-command.md
- 'Ansible 实践':
- 'Ansible Task片段': advanced/practice/snippets.md
- '在 Jenkins 中使用 Ansible': advanced/practice/jenkins-and-ansible.md
- '使用 ARA 记录 Ansible 执行结果': advanced/ara.md
- '使用 Ansible-cmdb': advanced/ansible-cmdb.md
- 'Ansible 开发':
- 'Ansible 开发说明': dev/index.md
- 'Ansible 架构': dev/ansible-architecture.md
- '使用 PyCharm 远程开发': dev/pycharm-remote-development.md
- 'Ansible 调试':
- '详细输出': dev/debug/verbose-debug.md
- 'pdb 本地调试': dev/debug/pdb.md
- 'PyCharm 远程调试': dev/debug/pycharm.md
- '模块调试': dev/debug/module-debug.md
- 'Module 开发':
- 'Module 开发说明': dev/modules/index.md
- '创建一个简单的module': dev/modules/remote_copy.md
- 'module 示例: 连接华为交换机': dev/modules/huawei-switch.md
- 'module 示例: 其他语言开发': dev/modules/module-outher-dev.md
- 'module 示例: dir': dev/modules/module-shell-dir.md
- 'module 示例: docker_facts': dev/modules/module-docker-facts.md
- 'module 示例: wechat': dev/modules/module-wechat.md
- 'module 的返回值': dev/modules/module-return.md
- 'module 的帮助文档': dev/modules/module-doc.md
- 'module 架构': dev/modules/module-architecture.md
- 'module 工具类': dev/modules/module-utilities.md
- 'Plugin 开发':
- 'Plugin 开发说明': dev/plugins/index.md
- 'Action 示例: hello': dev/plugins/Action-hello.md
- 'Callback 示例: BlackHole': dev/plugins/Callback-BlackHole.md
- 'Filter 示例: split': dev/plugins/Filter-split.md
- 'Inventory 示例: csv': dev/plugins/Inventory-csv.md
- 'Lookup 示例: github_status': dev/plugins/Lookup-github-status.md
- 'Vars 示例: csv_vars': dev/plugins/Vars-csv-vars.md
- 'API 使用':
- 'API 使用说明': dev/api/index.md
- '使用 API 运行任务': dev/api/api-task.md
- '使用 API 运行 Palybook': dev/api/api-playbook.md
- '使用 suitable': dev/api/api-suitable.md
- '使用 ansible runner': dev/api/api-ansible-runner.md
- 'Ansible UI':
- 'Ansible UI 说明': ui/index.md
- 'Ansible Awx': ui/awx.md
- 'Ansible Tower': ui/tower.md
- 'Ansible 认证':
- 'Ansible 认证说明': certification/index.md
- 'EX407 示例试题': certification/ex407-example.md
- 'Ansible Roles':
- 'Ansible roles 怎么用?': roles/index.md
- '认证':
- kerberos-client: roles/auth/kerberos-client.md
- kerberos-server: roles/auth/kerberos-server.md
- openldap: roles/auth/openldap.md
- '系统环境':
- ant: roles/env/ant.md
- erlang: roles/env/erlang.md
- go: roles/env/go.md
- hostnames: roles/env/hostnames.md
- java: roles/env/java.md
- lua: roles/env/lua.md
- mvn: roles/env/mvn.md
- nodejs: roles/env/nodejs.md
- openssh: roles/env/openssh.md
- openssl: roles/env/openssl.md
- os-init: roles/env/os-init.md
- php: roles/env/php.md
- python2.7: roles/env/python2.7.md
- repo-epel: roles/env/repo-epel.md
- ruby: roles/env/ruby.md
- sbt: roles/env/sbt.md
- ssh-2fa: roles/env/ssh-2fa.md
- ssh-keys: roles/env/ssh-keys.md
- update-kernel: roles/env/update-kernel.md
- 'WEB':
- nginx: roles/web/nginx.md
- openresty: roles/web/openresty.md
- tengine: roles/web/tengine.md
- tomcat: roles/web/tomcat.md
- '数据库':
- memcached: roles/database/memcached.md
- mongodb: roles/database/mongodb.md
- mycat: roles/database/mycat.md
- mysql: roles/database/mysql.md
- mysql57: roles/database/mysql57.md
- redis: roles/database/redis.md
- redis5: roles/database/redis5.md
- codis: roles/database/codis.md
- '键值存储':
- consul: roles/kv/consul.md
- etcd: roles/kv/etcd.md
- zookeeper: roles/kv/zookeeper.md
- '大数据':
- airflow: roles/bigdata/airflow.md
- cdh5-agent: roles/bigdata/cdh5-agent.md
- cdh5-pre: roles/bigdata/cdh5-pre.md
- cdh5-server: roles/bigdata/cdh5-server.md
- hadoop-standalone: roles/bigdata/hadoop-standalone.md
- superset: roles/bigdata/superset.md
- '消息系统':
- kafka: roles/mq/kafka.md
- kafka-manager: roles/mq/kafka-manager.md
- rabbitmq: roles/mq/rabbitmq.md
- rocketmq: roles/mq/rocketmq.md
- '持续集成/交付':
- deploy-image: roles/ci/deploy-image.md
- deploy-static: roles/ci/deploy-static.md
- deploy-supervisor: roles/ci/deploy-supervisor.md
- deploy-tomcat: roles/ci/deploy-tomcat.md
- jenkins: roles/ci/jenkins.md
- nexus: roles/ci/nexus.md
- '高可用':
- keepalived: roles/ha/keepalived.md
- '代理':
- haproxy: roles/proxy/haproxy.md
- '监控':
- grafana: roles/monitor/grafana.md
- zabbix-agent: roles/monitor/zabbix-agent.md
- zabbix-server: roles/monitor/zabbix-server.md
- '日志分析':
- elasticsearch: roles/log/elasticsearch.md
- filebeat: roles/log/filebeat.md
- grokdebug: roles/log/grokdebug.md
- kibana: roles/log/kibana.md
- logstash: roles/log/logstash.md
- heartbeat: roles/log/heartbeat.md
- metricbeat: roles/log/metricbeat.md
- '存储':
- gluster: roles/storage/gluster.md
- nfs: roles/storage/nfs.md
- samba: roles/storage/samba.md
- vsftpd: roles/storage/vsftpd.md
- '容器':
- docker-compose: roles/container/docker-compose.md
- docker-swarm: roles/container/docker-swarm.md
- docker: roles/container/docker.md
- harbor: roles/container/harbor.md
- kubernetes-bin: roles/container/kubernetes-bin.md
- kubernetes: roles/container/kubernetes.md
- shipyard: roles/container/shipyard.md
- nomad: roles/container/nomad.md
- '数据同步':
- rsync: roles/sync/rsync.md
- sersync: roles/sync/sersync.md
- '运维管理':
- os-check: roles/ops/os-check.md
- backup-file: roles/ops/backup-file.md
- '其他':
- chrony: roles/other/chrony.md
- confd: roles/other/confd.md
- iptables: roles/other/iptables.md
- ntp: roles/other/ntp.md
- supervisor: roles/other/supervisor.md
- vault: roles/other/vault.md
- cfssl: roles/other/cfssl.md