forked from operator-framework/operator-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
43 lines (39 loc) · 1.38 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
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: Operator Controller documentation
theme:
name: "material"
features:
- content.code.copy
repo_url: https://github.com/operator-framework/operator-controller
nav:
- Home: 'index.md'
- Components: 'components.md'
- Tasks:
- Adding a catalog of extensions: 'Tasks/adding-a-catalog.md'
- Finding extensions to install: 'Tasks/exploring-available-packages.md'
- Installing an extension: 'Tasks/installing-an-extension.md'
- Deleting an extension: 'Tasks/uninstalling-an-extension.md'
- References:
- Supported extensions: 'refs//supported-extensions.md'
- API references:
- Operator Controller API reference: 'refs/api/operator-controller-api-reference.md'
- CatalogD API reference: 'refs/api/catalogd-api-reference.md'
- Catalog queries: 'refs/catalog-queries.md'
- CRD Upgrade Safety: 'refs/crd-upgrade-safety.md'
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- def_list
- pymdownx.tasklist:
custom_checkbox: true
- admonition
- pymdownx.details