mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-30 17:37:25 +02:00
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:
parent
b1912128f3
commit
bcecee5ee3
43 changed files with 663 additions and 105 deletions
|
@ -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"]
|
||||
}
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue