forked from operator-framework/community-operators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
52 lines (47 loc) · 1.41 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
site_name: Community operators
repo_name: community-operators
repo_url: https://github.com/operator-framework/community-operators
nav:
- 'Overview': README.md
# - 'Operator':
- 'Packaging your Operator for OperatorHub':
- 'Operator structure' : packaging-operator.md
- 'Required fields': packaging-required-fields.md
- 'Testing':
- 'Explained': testing-operators.md
- 'Via test suite' : operator-test-suite.md
- 'Contributing':
- 'Prerequisites' : contributing-prerequisites.md
- 'Where to place operator': contributing-where-to.md
- 'Creating pull request (PR)' : contributing-via-pr.md
- 'Tests in PR explained' : tests-in-pr.md
- 'Updating existing Operators' : operator-versioning.md
- 'Updating published Operator version' : operator-overwrite.md
- 'Release process' : operator-release-process.md
- 'Github Action' : action.md
- 'Best practices' : best-practices.md
- 'Troubleshooting' : troubleshooting.md
theme:
name: material
features:
# - navigation.instant
- navigation.tabs
- navigation.sections
- navigation.expand
- toc.integrate
hide:
- navigation # Hide navigation
- toc # Hide table of contents
extra_css:
- stylesheets/extra.css
plugins:
- search
- mermaid2
markdown_extensions:
- admonition
- codehilite
- footnotes
- meta
- pymdownx.tabbed
- toc:
toc_depth: 2