docs: add kubernetes (#33)

- Update PR template to use Go language conventions.
- Moved healthcheck middleware to hijack a request before logging.
- Rewrote the quickstart guides to follow a similar pattern.
- Added an overview blurb on pomerium and its goals.
- Add an "example config" section to docs.
This commit is contained in:
Bobby DeSimone 2019-01-27 22:22:14 -08:00 committed by GitHub
parent b1912128f3
commit bcecee5ee3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
43 changed files with 663 additions and 105 deletions

View file

@ -9,19 +9,32 @@ module.exports = {
docsDir: "docs",
editLinkText: "Edit this page on GitHub",
lastUpdated: "Last Updated",
nav: [{ text: "Guide", link: "/guide/" }],
nav: [{ text: "Quick Start", link: "/guide/" },
{ text: "Documentation", link: "/docs/" }],
sidebar: {
"/guide/": genSidebarConfig("Guide")
"/guide/": guideSidebar("Quick Start"),
"/docs/": docsSidebar("Documentation")
}
}
};
function genSidebarConfig(title) {
function guideSidebar(title) {
return [
{
title,
collapsable: false,
children: ["", "identity-providers", "signed-headers"]
children: ["", "docker", "kubernetes", "from-source"]
}
];
}
function docsSidebar(title) {
return [
{
title,
collapsable: false,
children: ["", "identity-providers", "signed-headers", "examples"]
}
];
}