-
Notifications
You must be signed in to change notification settings - Fork 400
/
mkdocs.yml
90 lines (84 loc) · 2.72 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
83
84
85
86
87
88
89
90
site_name: 'ko: Easy Go Containers'
site_url: https://ko.build
repo_url: https://github.com/ko-build/ko
edit_uri: edit/main/docs/
theme:
name: material
logo: images/favicon-96x96.png
favicon: images/favicon-96x96.png
custom_dir: docs/custom/
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
primary: light blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: light blue
toggle:
icon: material/brightness-4
name: Switch to system preference
nav:
- index.md
- install.md
- get-started.md
- configuration.md
- deployment.md
- community.md
- Features:
- features/multi-platform.md
- features/sboms.md
- features/k8s.md
- features/static-assets.md
- features/build-cache.md
- features/debugging.md
- Advanced:
- advanced/go-packages.md
- advanced/limitations.md
- advanced/migrating-from-dockerfile.md
- advanced/faq.md
- advanced/terraform.md
- advanced/lambda.md
- advanced/linux-capabilities.md
- advanced/root-ca-certificates.md
- CLI Reference:
- 'ko': reference/ko.md
- 'ko apply': reference/ko_apply.md
- 'ko build': reference/ko_build.md
- 'ko create': reference/ko_create.md
- 'ko delete': reference/ko_delete.md
- 'ko login': reference/ko_login.md
- 'ko resolve': reference/ko_resolve.md
- 'ko run': reference/ko_run.md
- 'ko version': reference/ko_version.md
- Releases: "https://github.com/ko-build/ko/releases"
plugins:
- search
- redirects:
redirect_maps:
'repo.md': 'https://github.com/ko-build/ko'
'issues.md': 'https://github.com/ko-build/ko/issues'
'prs.md': 'https://github.com/ko-build/ko/pulls'
'releases.md': 'https://github.com/ko-build/ko/releases'
'godoc.md': 'https://pkg.go.dev/github.com/google/ko'
'terraform.md': 'https://github.com/ko-build/terraform-provider-ko'
'action.md': 'https://github.com/ko-build/setup-ko'
'slack.md': 'https://kubernetes.slack.com/archives/C01T7DTP65S'
'agenda.md': 'https://docs.google.com/document/d/1eQ67Qxwf1tkTv0yU_dw9bIRnlwJZz-5GXCRVOhqbgvU/edit'
'meet.md': 'meet.google.com/xvn-dzzk-wur'
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences