-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
54 lines (49 loc) · 1.64 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
---
# DO NOT EDIT THIS FILE, BECAUSE IT IS AUTOMATICALLY GENERATED FROM A TEMPLATE
# Instead, edit the scripts/templates/docs/mkdocs.yml.jinja template, and then
# run the scripts/crd2markdown script.
site_name: API Operator for Quay
repo_url: https://github.com/herve4m/quay-api-operator
edit_uri: edit/main/docs
theme:
name: mkdocs
navigation_depth: 3
markdown_extensions:
- admonition
plugins:
- mermaid2:
arguments:
theme: neutral
nav:
- User Guide: README.md
- Custom Resources:
- Operator Custom Resources: crds/README.md
- ApiToken: crds/ApiToken.md
- Application: crds/Application.md
- DefaultPerm: crds/DefaultPerm.md
- DockerToken: crds/DockerToken.md
- FirstUser: crds/FirstUser.md
- ManifestLabel: crds/ManifestLabel.md
- Message: crds/Message.md
- Notification: crds/Notification.md
- OrganizationPrune: crds/OrganizationPrune.md
- Organization: crds/Organization.md
- ProxyCache: crds/ProxyCache.md
- Quota: crds/Quota.md
- Repository: crds/Repository.md
- RepositoryMirror: crds/RepositoryMirror.md
- RepositoryPrune: crds/RepositoryPrune.md
- Robot: crds/Robot.md
- Tag: crds/Tag.md
- TeamLdap: crds/TeamLdap.md
- TeamOidc: crds/TeamOidc.md
- Team: crds/Team.md
- User: crds/User.md
- Developer Guide:
- Developer Guide: developer-guide/README.md
- Tools: developer-guide/tools.md
- Building: developer-guide/building.md
- Deploying: developer-guide/deploying.md
- Testing: developer-guide/testing.md
- Releasing to OperatorHub.io: developer-guide/releasing.md
...