-
Notifications
You must be signed in to change notification settings - Fork 54
/
mkdocs.yml
74 lines (69 loc) · 2.6 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
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: Operator Lifecycle Manager
theme:
logo: assets/logo.svg
name: "material"
palette:
primary: black
features:
- content.code.copy
- navigation.top
# - navigation.tabs
- navigation.indexes
repo_url: https://github.com/operator-framework/operator-controller
extra_css:
- css/extra.css
nav:
- Overview:
- index.md
- Community: project/olmv1_community.md
- Architecture: project/olmv1_architecture.md
- Design Decisions: project/olmv1_design_decisions.md
- Limitations: project/olmv1_limitations.md
- Roadmap: project/olmv1_roadmap.md
- Public API: project/public-api.md
- Getting Started: getting-started/olmv1_getting_started.md
- Tutorials:
- Add a Catalog: tutorials/add-catalog.md
- Explore Content: tutorials/explore-available-content.md
- Install an Extension: tutorials/install-extension.md
- Upgrade an Extension: tutorials/upgrade-extension.md
- Downgrade an Extension: tutorials/downgrade-extension.md
- Uninstall an Extension: tutorials/uninstall-extension.md
- How-To Guides:
- Catalog queries: howto/catalog-queries.md
- Channel-Based Upgrades: howto/how-to-channel-based-upgrades.md
- Version Pinning: howto/how-to-pin-version.md
- Version Range Upgrades: howto/how-to-version-range-upgrades.md
- Z-Stream Upgrades: howto/how-to-z-stream-upgrades.md
- Derive Service Account Permissions: howto/derive-service-account.md
- Conceptual Guides:
- Single Owner Objects: concepts/single-owner-objects.md
- Upgrade Support: concepts/upgrade-support.md
- CRD Upgrade Safety: concepts/crd-upgrade-safety.md
- Content Resolution: concepts/controlling-catalog-selection.md
- Version Ranges: concepts/version-ranges.md
- API Reference:
- Operator Controller API reference: api-reference/operator-controller-api-reference.md
- CatalogD API reference: api-reference/catalogd-api-reference.md
- CatalogD Web Server reference: api-reference/catalogd-webserver.md
- Contribute:
- Contributing: contribute/contributing.md
- Developing OLM v1: contribute/developer.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