forked from stefanprodan/timoni
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
82 lines (77 loc) · 2.29 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
site_name: timoni
site_description: |
Timoni is a package manager for Kubernetes powered by CUE lang.
site_author: Stefan Prodan
site_url: https://timoni.sh
repo_name: stefanprodan/timoni
repo_url: https://github.com/stefanprodan/timoni
edit_uri: ""
theme:
name: material
logo: images/gopher.png
favicon: images/gopher.png
language: en
custom_dir: docs/theme/
palette:
primary: deep purple
accent: indigo
features:
- navigation.sections
docs_dir: docs
plugins:
- search
markdown_extensions:
- attr_list
- admonition
- meta
- codehilite
- pymdownx.tilde
- pymdownx.progressbar
- pymdownx.tasklist
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
nav:
- Introduction: index.md
- Installation: install.md
- Quickstart: quickstart.md
- Topics:
- Bundle files: bundles.md
- Module structure: module.md
- Module versioning: module-semver.md
- Values files: values.md
- Compared to other tools: comparison.md
- Automation:
- GitHub Actions: github-actions.md
- GitOps with Flux: gitops-flux.md
- Command Reference:
- Modules:
- Init: cmd/timoni_mod_init.md
- Lint: cmd/timoni_mod_lint.md
- Push: cmd/timoni_mod_push.md
- Pull: cmd/timoni_mod_pull.md
- List: cmd/timoni_mod_list.md
- Instances:
- Apply: cmd/timoni_apply.md
- Build: cmd/timoni_build.md
- Delete: cmd/timoni_delete.md
- List: cmd/timoni_list.md
- Inspect Module: cmd/timoni_inspect_module.md
- Inspect Values: cmd/timoni_inspect_values.md
- Inspect Resources: cmd/timoni_inspect_resources.md
- Status: cmd/timoni_status.md
- Bundles:
- Apply: cmd/timoni_bundle_apply.md
- Build: cmd/timoni_bundle_build.md
- Delete: cmd/timoni_bundle_delete.md
- Lint: cmd/timoni_bundle_lint.md
- Completion:
- Bash: cmd/timoni_completion_bash.md
- Fish: cmd/timoni_completion_fish.md
- Powershell: cmd/timoni_completion_powershell.md
- ZSH: cmd/timoni_completion_zsh.md