-
Notifications
You must be signed in to change notification settings - Fork 5
/
mkdocs.yml
129 lines (116 loc) · 3.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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
site_name: Actuated
site_description: Realise the potential of blazingly fast builds.
site_author: OpenFaaS Ltd
site_url: https://docs.actuated.com/
# Repository
repo_name: self-actuated/actuated
repo_url: https://github.com/self-actuated
edit_uri: ""
copyright: |
Copyright © 2023 OpenFaaS Ltd
theme:
name: material
# custom_dir: docs/theme
logo: images/logo.png
palette:
- scheme: default
primary: black
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
primary: black
toggle:
icon: material/toggle-switch
name: Switch to light mode
font:
text: Roboto, Helvetica
code: Roboto Mono
features:
- navigation.tracking
- navigation.sections
- navigation.expand
include_search_page: false
search_index_only: true
language: en
# favicon: images/favicon.ico
extra:
search:
languages: "en"
social:
- icon: fontawesome/brands/github
link: https://github.com/self-actuated/
- icon: fontawesome/brands/twitter
link: https://twitter.com/selfactuated
plugins:
- search
markdown_extensions:
- attr_list
- tables
- md_in_html
- markdown.extensions.admonition
- markdown.extensions.codehilite:
guess_lang: false
- markdown.extensions.def_list
- markdown.extensions.footnotes
- markdown.extensions.meta
- markdown.extensions.toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
# emoji_generator: !!python/name:pymdownx.emoji.to_svg
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
nav:
- Overview:
- Introduction: index.md
- Dashboard: dashboard.md
- FAQ: faq.md
- Roadmap: roadmap.md
- Contact us: contact.md
- Onboarding:
- Register your GitHub Organisation: register.md
- Provision a Server: provision-server.md
- Install the Agent: install-agent.md
- Run a test build: test-build.md
- Tasks:
- Right Size the VM: tasks/right-size-vm.md
- Setup a Registry Mirror: tasks/registry-mirror.md
- Debug a job with SSH: tasks/debug-ssh.md
- Set-up the CLI: tasks/cli.md
- Setup self-hosted cache: tasks/local-github-cache.md
- Monitoring: tasks/monitoring.md
- Troubleshooting: troubleshooting.md
- Examples:
- System Info: examples/system-info.md
- Job Matrix: examples/matrix.md
- Compile a Kernel: examples/kernel.md
- Kubernetes with K3s: examples/k3s.md
- Kubernetes with KinD: examples/kind.md
- Kubernetes regression matrix: examples/matrix-k8s.md
- Docker run/build: examples/docker.md
- Publish an OpenFaaS function: examples/openfaas-publish.md
- Deploy a Helm chart: examples/openfaas-helm.md
- Custom VM sizes: examples/custom-vm-size.md
- Using caching in builds: examples/github-actions-cache.md
- Advanced examples:
- Run a KVM guest: examples/kvm-guest.md
- Multi-arch images with buildx: examples/multiarch-buildx.md
extra:
analytics:
provider: google
property: G-PTK21TFJ7V
anonymize_ip: true