mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-02-14 09:59:57 +00:00
* docs: document integration with rancher projects Signed-off-by: Massimiliano Giovagnoli <me@maxgio.it> * chore(docs/guides/rancher-projects/capsule-rancher.md): add markdown yaml code block header Co-authored-by: Dario Tranchitella <dario@tranchitella.eu> * chore(docs/guides/rancher-projects/capsule-proxy-rancher.md): remove typos Co-authored-by: Dario Tranchitella <dario@tranchitella.eu> * chore(docs/guides/rancher-projects): set correct indentation for code blocks Signed-off-by: Massimiliano Giovagnoli <me@maxgio.it> Co-authored-by: Dario Tranchitella <dario@tranchitella.eu> --------- Signed-off-by: Massimiliano Giovagnoli <me@maxgio.it> Co-authored-by: Dario Tranchitella <dario@tranchitella.eu>
162 lines
4.5 KiB
JavaScript
162 lines
4.5 KiB
JavaScript
// Server API makes it possible to hook into various parts of Gridsome
|
|
// on server-side and add custom data to the GraphQL data layer.
|
|
// Learn more: https://gridsome.org/docs/server-api/
|
|
|
|
// Changes here require a server restart.
|
|
// To restart press CTRL + C in terminal and run `gridsome develop`
|
|
|
|
module.exports = function (api) {
|
|
api.loadSource(actions => {
|
|
// Use the Data Store API here: https://gridsome.org/docs/data-store-api/
|
|
const sidebar = actions.addCollection({
|
|
typeName: 'Sidebar'
|
|
})
|
|
|
|
sidebar.addNode({
|
|
sections: [
|
|
{
|
|
items: [
|
|
{
|
|
label: 'Overview',
|
|
path: '/docs/'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
title: 'Documentation',
|
|
items: [
|
|
{
|
|
label: 'Getting Started',
|
|
path: '/docs/general/getting-started'
|
|
},
|
|
{
|
|
label: 'Tutorial',
|
|
path: '/docs/general/tutorial'
|
|
},
|
|
{
|
|
label: 'References',
|
|
path: '/docs/general/references'
|
|
},
|
|
{
|
|
label: 'CRDs APIs',
|
|
path: '/docs/general/crds-apis'
|
|
},
|
|
{
|
|
label: 'Multi-Tenant Benchmark',
|
|
path: '/docs/general/mtb'
|
|
},
|
|
{
|
|
label: 'Capsule Proxy',
|
|
path: '/docs/general/proxy'
|
|
},
|
|
{
|
|
label: 'Dashboard',
|
|
path: '/docs/general/lens'
|
|
},
|
|
]
|
|
},
|
|
{
|
|
title: 'Guides',
|
|
items: [
|
|
{
|
|
label: 'OIDC Authentication',
|
|
path: '/docs/guides/oidc-auth'
|
|
},
|
|
{
|
|
label: 'Monitoring Capsule',
|
|
path: '/docs/guides/monitoring'
|
|
},
|
|
{
|
|
label: 'Kubernetes Dashboard',
|
|
path: '/docs/guides/kubernetes-dashboard'
|
|
},
|
|
{
|
|
label: 'Backup & Restore with Velero',
|
|
path: '/docs/guides/velero'
|
|
},
|
|
{
|
|
label: 'Upgrading Capsule',
|
|
path: '/docs/guides/upgrading'
|
|
},
|
|
{
|
|
label: 'Multi-tenant GitOps with Flux',
|
|
path: '/docs/guides/flux2-capsule'
|
|
},
|
|
{
|
|
label: 'Install on Charmed Kubernetes',
|
|
path: '/docs/guides/charmed'
|
|
},
|
|
{
|
|
label: 'Control Pod Security',
|
|
path: '/docs/guides/pod-security'
|
|
},
|
|
{
|
|
title: 'Tenants and Rancher Projects',
|
|
subItems: [
|
|
{
|
|
label: 'Overview',
|
|
path: '/docs/guides/rancher-projects/introduction'
|
|
},
|
|
{
|
|
label: 'Tenants and Projects',
|
|
path: '/docs/guides/rancher-projects/capsule-rancher'
|
|
},
|
|
{
|
|
label: 'Rancher Shell and cluster-wide resources',
|
|
path: '/docs/guides/rancher-projects/capsule-proxy-rancher'
|
|
},
|
|
{
|
|
label: 'OIDC authentication with Capsule, Rancher and Keycloak',
|
|
path: '/docs/guides/rancher-projects/oidc-keycloak'
|
|
},
|
|
]
|
|
},
|
|
{
|
|
title: 'Managed Kubernetes',
|
|
subItems: [
|
|
{
|
|
label: 'Overview',
|
|
path: '/docs/guides/managed-kubernetes/overview'
|
|
},
|
|
{
|
|
label: 'EKS',
|
|
path: '/docs/guides/managed-kubernetes/aws-eks'
|
|
},
|
|
{
|
|
label: 'CoAKS',
|
|
path: '/docs/guides/managed-kubernetes/coaks'
|
|
},
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
title: 'Contributing',
|
|
items: [
|
|
{
|
|
label: 'Guidelines',
|
|
path: '/docs/contributing/guidelines'
|
|
},
|
|
{
|
|
label: 'Development',
|
|
path: '/docs/contributing/development'
|
|
},
|
|
{
|
|
label: 'Governance',
|
|
path: '/docs/contributing/governance'
|
|
},
|
|
{
|
|
label: 'Release process',
|
|
path: '/docs/contributing/release'
|
|
}
|
|
]
|
|
}
|
|
]
|
|
})
|
|
})
|
|
|
|
api.createPages(({ createPage }) => {
|
|
// Use the Pages API here: https://gridsome.org/docs/pages-api/
|
|
})
|
|
}
|