-
Notifications
You must be signed in to change notification settings - Fork 32
/
mkdocs.yml
181 lines (181 loc) · 6.26 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
site_name: "Chaos Toolkit - The chaos engineering toolkit for developers"
site_url: "https://chaostoolkit.org"
use_directory_urls: true
site_author: Chaos Toolkit
site_description: Chaos Toolkit
copyright: "© 2017-2024 Chaos Toolkit"
edit_uri: ""
theme:
name: material
favicon: "static/images/favicon.ico"
logo: "static/images/chaos-toolkit-full.svg"
palette:
primary: white
accent: yellow
custom_dir: sources/overrides
include_search_page: false
search_index_only: true
features:
- navigation.instant
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- search.suggest
- content.code.annotate
- content.code.copy
font: false
extra_css:
- "static/css/extra.css"
docs_dir: sources
repo_name: chaostoolkit
repo_url: https://github.com/chaostoolkit/chaostoolkit
markdown_extensions:
- markdown_include.include:
base_path: "sources/shared"
- pymdownx.tabbed:
alternate_style: true
- admonition
- def_list
- footnotes
- meta
- smarty
- tables
- toc:
permalink: True
- pymdownx.betterem:
smart_enable: "all"
- pymdownx.caret
- pymdownx.critic
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.tasklist:
custom_checkbox: True
- pymdownx.tilde
- pymdownx.snippets:
base_path: "sources/shared"
plugins:
- search
- minify:
minify_html: true
extra:
analytics:
provider: google
property: UA-110478437-1
social:
- icon: fontawesome/brands/github
link: https://github.com/chaostoolkit
- icon: fontawesome/brands/twitter
link: https://twitter.com/chaostoolkit
- icon: fontawesome/brands/slack
link: https://join.slack.com/t/chaostoolkit/shared_invite/zt-22c5isqi9-3YjYzucVTNFFVIG~Kzns8g
- icon: fontawesome/brands/medium
link: https://medium.com/chaos-toolkit
nav:
- Home: index.md
- Get Started:
- Install: reference/usage/install.md
- Upgrade: reference/usage/upgrade.md
- CLI:
- Overview: reference/usage/cli.md
- Discover: reference/usage/discover.md
- Init: reference/usage/init.md
- Run: reference/usage/run.md
- Report: reference/usage/report.md
- Schedule: reference/usage/scheduling.md
- Guides:
- Get Started with the Chaos Toolkit: reference/tutorial.md
- Chaos Toolkit Labs: reference/walkthrough.md
- Author and Operator: reference/tutorials/authoring_operating.md
- Understand the Execution Flow: reference/tutorials/run-flow.md
- Learn all about Steady-State Tolerances: reference/tutorials/tolerance.md
- An overview of extending the Chaos Toolkit: reference/tutorials/extend.md
- Experimenting against a blockchain: reference/tutorials/blockchain.md
- Containerising Chaos Toolkit: reference/tutorials/containerising.md
- Running Chaos Toolkit in AWS:
- Running Chaos Toolkit from an EC2 instance: reference/tutorials/ec2.md
- Running Chaos Toolkit experiments as AWS Batch Jobs: reference/tutorials/batch.md
- Reference:
- API:
- Concepts: reference/concepts.md
- Experiment: reference/api/experiment.md
- Journal: reference/api/journal.md
- CLI:
- Overview: reference/usage/cli.md
- Discover: reference/usage/discover.md
- Init: reference/usage/init.md
- Run: reference/usage/run.md
- Report: reference/usage/report.md
- Schedule: reference/usage/scheduling.md
- Extensions:
- Overview: drivers/overview.md
- Infrastructure/Platform:
- AWS: drivers/aws.md
- Ansible: drivers/ansible.md
- Azure: drivers/azure.md
- Cloud Foundry: drivers/cloudfoundry.md
- Gandi: drivers/gandi.md
- Google Cloud Platform: drivers/gcp.md
- Kubernetes: drivers/kubernetes.md
- Service Fabric: drivers/service-fabric.md
- Application:
- Spring: drivers/spring.md
- Kafka: drivers/kafka.md
- Network:
- ToxiProxy: drivers/toxiproxy.md
- Istio: drivers/istio.md
- WireMock: drivers/wiremock.md
- Load Testing:
- k6: drivers/k6.md
- Notification:
- Slack: drivers/slack.md
- Observability:
- DataDog: drivers/datadog.md
- Dynatrace: drivers/dynatrace.md
- Grafana: drivers/grafana.md
- Honeycomb: drivers/honeycomb.md
- Humio: drivers/humio.md
- Open Tracing/OpenTelemetry: drivers/opentracing.md
- Prometheus: drivers/prometheus.md
- Reliability:
- Reliably: drivers/reliably.md
- Addons:
- Common: drivers/addons.md
- Deployment:
- Local:
- Binary: deployment/local/binary.md
- Docker: deployment/local/docker.md
- AWS:
- ECS Task: deployment/aws/task.md
- Google Cloud:
- Action: deployment/gcp/cloudrunjob.md
- GitHub:
- Action: deployment/github.md
- GitLab:
- Component: deployment/gitlab.md
- Kubernetes:
- Operator: deployment/k8s/operator.md
- Develop:
- Guidelines: reference/developing/guidelines.md
- Driver Extension:
- Extension Approaches: reference/extending/approaches.md
- Extend with Python: reference/extending/extending-with-python.md
- Control Extension:
- Create Control: reference/extending/create-control-extension.md
- Contribute:
- Contributing to the Chaos Toolkit: reference/contributing.md
- Project Management:
- Key Project Values: reference/developing/values.md
- Core Projects: reference/developing/core.md
- Extensions Projects: reference/developing/extensions.md
- Technology Choices: reference/developing/technologies.md
- Resources:
- Logos: resources/logos.md
- Slides: resources/slides.md
- Offering: offering.md