-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathmkdocs.yml
More file actions
96 lines (96 loc) · 4.28 KB
/
mkdocs.yml
File metadata and controls
96 lines (96 loc) · 4.28 KB
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
#
# NOTE: titles need to be capitalized here to work around MkDocs automatically downcasing title
# names
#
site_name: Deis Workflow Documentation
site_url: https://deis.com/docs/workflow
pages:
- Home: index.md
- Quick Start:
- Overview: quickstart/index.md
- Install CLI Tools: quickstart/install-cli-tools.md
- AWS:
- Boot: quickstart/provider/aws/boot.md
- DNS: quickstart/provider/aws/dns.md
- Install Workflow: quickstart/provider/aws/install-aws.md
- GKE:
- Boot: quickstart/provider/gke/boot.md
- DNS: quickstart/provider/gke/dns.md
- Install Workflow: quickstart/provider/gke/install-gke.md
- Vagrant:
- Boot: quickstart/provider/vagrant/boot.md
- DNS: quickstart/provider/vagrant/dns.md
- Install Workflow: quickstart/provider/vagrant/install-vagrant.md
- Deploy Your First App: quickstart/deploy-an-app.md
- Understanding Workflow:
- Concepts: understanding-workflow/concepts.md
- Architecture: understanding-workflow/architecture.md
- Components: understanding-workflow/components.md
- Installing Workflow:
- Installing Workflow: installing-workflow/index.md
- System Requirements: installing-workflow/system-requirements.md
- Configuring Object Storage: installing-workflow/configuring-object-storage.md
- Configuring Postgres: installing-workflow/configuring-postgres.md
- Users:
- Command Line Interface: users/cli.md
- Users and Registration: users/registration.md
- SSH Keys: users/ssh-keys.md
- Applications:
- Deploying Apps: applications/deploying-apps.md
- Buildpacks: applications/using-buildpacks.md
- Dockerfiles: applications/using-dockerfiles.md
- Docker Images: applications/using-docker-images.md
- Managing App Processes: applications/managing-app-processes.md
- Managing App Configuration: applications/managing-app-configuration.md
- Managing App Lifecycle: applications/managing-app-lifecycle.md
- Resource Limits: applications/managing-resource-limits.md
- Domains and Routing: applications/domains-and-routing.md
- SSL Certificates: applications/ssl-certificates.md
- Managing Workflow:
- Tuning Component Settings: managing-workflow/tuning-component-settings.md
- Configuring Load Balancers: managing-workflow/configuring-load-balancers.md
- Configuring DNS: managing-workflow/configuring-dns.md
- Platform Logging: managing-workflow/platform-logging.md
- Platform Monitoring: managing-workflow/platform-monitoring.md
- Production Deployments: managing-workflow/production-deployments.md
- Security Considerations: managing-workflow/security-considerations.md
- Platform SSL: managing-workflow/platform-ssl.md
- Upgrading Workflow: managing-workflow/upgrading-workflow.md
- Troubleshooting:
- Troubleshooting Workflow: troubleshooting/index.md
- Troubleshooting using Kubectl: troubleshooting/kubectl.md
- Roadmap:
- Planning Process: roadmap/planning-process.md
- Roadmap: roadmap/roadmap.md
- Release Schedule: roadmap/release-schedule.md
- Release Checklist: roadmap/release-checklist.md
- Contributing:
- Overview: contributing/overview.md
- Design Documents: contributing/design-documents.md
- Development Environment: contributing/development-environment.md
- Testing: contributing/testing.md
- Submitting a Pull Request: contributing/submitting-a-pull-request.md
- Community: contributing/community.md
- Triaging Issues: contributing/triaging-issues.md
- Conduct: contributing/conduct.md
- Maintainers: contributing/maintainers.md
- Reference Guide:
- Terms: reference-guide/terms.md
- Creating a Self-Signed SSL Certificate: reference-guide/creating-a-self-signed-ssl-certificate.md
# FIXME (bacongobbler): our custom deis theme only supports a toctree depth of 2 due to css issues
- Controller API v2.0: reference-guide/controller-api/v2.0.md
- Controller API v2.1: reference-guide/controller-api/v2.1.md
theme_dir: themes/deis
docs_dir: src
markdown_extensions:
- markdown_checklist.extension
- admonition
- codehilite
- toc:
permalink: True
extra_javascript:
- static/js/foundation.js
- static/js/foundation.offcanvas.js
- static/js/headroom.min.js
- static/js/adjustments.js
google_analytics: ['UA-42867143-3', 'auto']