-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmkdocs.yml
80 lines (79 loc) · 2.45 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
site_name: Racetrack
repo_name: TheRacetrack/racetrack
repo_url: https://github.com/TheRacetrack/racetrack
site_author: TheRacetrack
docs_dir: .
edit_uri: ''
theme:
name: material
icon:
repo: fontawesome/brands/github
logo: docs/assets/logo/racetrack-logo-white.png
palette:
- scheme: default
primary: indigo
accent: blue
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
primary: black
accent: green
toggle:
icon: material/toggle-switch
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
features:
- navigation.expand
markdown_extensions:
- admonition
- pymdownx.highlight:
use_pygments: true
- pymdownx.superfences
- toc:
permalink: true
plugins:
- search
- same-dir
- exclude:
glob:
- venv/*
- dashboard/*
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/TheRacetrack/racetrack
name: Racetrack on GitHub
nav:
- Introduction: README.md
- For Users:
- Quickstart: docs/quickstart.md
- User Manual: docs/user/user-guide-1.md
- User Guide - Deploying a Job: docs/user/user-guide-2.md
- Plugins:
- Available plugins: docs/user/available-plugins.md
- Installing plugins: docs/user/using-plugins.md
- Job Manifest File Schema: docs/manifest-schema.md
- Permission model: docs/permissions.md
- CLI client: racetrack_client/README.md
- Asynchronous calls to jobs: docs/user/async-job-calls.md
- Glossary: docs/glossary.md
- Changelog: docs/CHANGELOG.md
- For Administrators:
- Installation guides:
- Local Kubernetes Setup: docs/deployment/local-kubernetes-setup.md
- Installation to standalone host: docs/deployment/standalone-host.md
- Installation to non-local Kubernetes: docs/deployment/k8s-installation.md
- Remote Kubernetes Gateway: docs/deployment/remote-kubernetes-gateway.md
- Remote Docker Gateway: docs/deployment/remote-docker-gateway.md
- Administering: docs/admin.md
- For Developers:
- Plugins:
- Developing plugins: docs/development/developing-plugins.md
- Job type plugins: docs/development/plugins-job-types.md
- Developer manual: docs/development/develop.md
- Releasing a version: docs/development/release.md
- Bill of Materials: docs/development/bom.md
- Copyright Notices: docs/license/copyright-notices.md