2022-09-02 05:52:42 -04:00
|
|
|
/**
|
|
|
|
* Creating a sidebar enables you to:
|
|
|
|
- create an ordered group of docs
|
|
|
|
- render a sidebar for each doc of that group
|
|
|
|
- provide next/previous navigation
|
|
|
|
|
|
|
|
The sidebars can be generated from the filesystem, or explicitly defined here.
|
|
|
|
|
|
|
|
Create as many sidebars as you want.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// @ts-check
|
|
|
|
|
|
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
|
|
const sidebars = {
|
|
|
|
// By default, Docusaurus generates a sidebar from the docs folder structure
|
|
|
|
// tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
|
|
|
|
|
|
|
|
// But you can create a sidebar manually
|
|
|
|
docs: [
|
|
|
|
{
|
|
|
|
type: 'doc',
|
2022-09-08 02:43:40 -04:00
|
|
|
label: 'Introduction',
|
2022-09-02 05:52:42 -04:00
|
|
|
id: 'intro'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'category',
|
2022-09-08 02:43:40 -04:00
|
|
|
label: 'Basics',
|
2022-09-02 05:52:42 -04:00
|
|
|
link: {
|
|
|
|
type: 'generated-index',
|
|
|
|
},
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Confidential Kubernetes',
|
|
|
|
id: 'overview/confidential-kubernetes',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Security benefits',
|
|
|
|
id: 'overview/security-benefits',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Product features',
|
|
|
|
id: 'overview/product',
|
|
|
|
},
|
2022-09-04 16:11:10 -04:00
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Feature status of clouds',
|
|
|
|
id: 'overview/clouds',
|
|
|
|
},
|
2022-09-02 05:52:42 -04:00
|
|
|
{
|
2023-08-24 09:52:05 -04:00
|
|
|
type: 'category',
|
2022-09-02 05:52:42 -04:00
|
|
|
label: 'Performance',
|
2023-08-24 09:52:05 -04:00
|
|
|
link: { type: 'doc', id: 'overview/performance/performance' },
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'I/O benchmarks',
|
|
|
|
id: 'overview/performance/io',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Application benchmarks',
|
|
|
|
id: 'overview/performance/application',
|
|
|
|
},
|
|
|
|
]
|
2022-09-02 05:52:42 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'License',
|
|
|
|
id: 'overview/license',
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'category',
|
|
|
|
label: 'Getting started',
|
|
|
|
link: {
|
|
|
|
type: 'generated-index',
|
|
|
|
},
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
type: 'doc',
|
2022-09-21 10:58:04 -04:00
|
|
|
label: 'Installation',
|
2022-09-02 05:52:42 -04:00
|
|
|
id: 'getting-started/install',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
2022-10-13 05:29:56 -04:00
|
|
|
label: 'First steps (cloud)',
|
2022-09-02 05:52:42 -04:00
|
|
|
id: 'getting-started/first-steps',
|
|
|
|
},
|
2022-10-07 03:42:14 -04:00
|
|
|
{
|
|
|
|
type: 'doc',
|
2022-10-13 05:29:56 -04:00
|
|
|
label: 'First steps (local)',
|
2022-10-17 10:41:56 -04:00
|
|
|
id: 'getting-started/first-steps-local',
|
2022-10-07 03:42:14 -04:00
|
|
|
},
|
2024-01-24 03:57:35 -05:00
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Cloud Marketplaces',
|
|
|
|
id: 'getting-started/marketplaces',
|
|
|
|
},
|
2022-09-02 05:52:42 -04:00
|
|
|
{
|
|
|
|
type: 'category',
|
|
|
|
label: 'Examples',
|
|
|
|
link: {
|
|
|
|
type: 'doc',
|
|
|
|
id: 'getting-started/examples',
|
|
|
|
},
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Emojivoto',
|
|
|
|
id: 'getting-started/examples/emojivoto'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Online Boutique',
|
|
|
|
id: 'getting-started/examples/online-boutique'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Horizontal Pod Autoscaling',
|
|
|
|
id: 'getting-started/examples/horizontal-scaling'
|
|
|
|
},
|
2023-10-10 09:35:23 -04:00
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Filestash with s3proxy',
|
2023-10-10 12:11:30 -04:00
|
|
|
id: 'getting-started/examples/filestash-s3proxy'
|
2023-10-10 09:35:23 -04:00
|
|
|
},
|
2022-09-02 05:52:42 -04:00
|
|
|
]
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'category',
|
|
|
|
label: 'Workflows',
|
|
|
|
link: {
|
|
|
|
type: 'generated-index',
|
|
|
|
},
|
|
|
|
items: [
|
2022-09-12 12:35:12 -04:00
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Verify the CLI',
|
|
|
|
id: 'workflows/verify-cli',
|
|
|
|
},
|
2022-12-12 07:33:19 -05:00
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Configure your cluster',
|
|
|
|
id: 'workflows/config',
|
|
|
|
},
|
2022-09-02 05:52:42 -04:00
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Create your cluster',
|
|
|
|
id: 'workflows/create',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Scale your cluster',
|
|
|
|
id: 'workflows/scale',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Upgrade your cluster',
|
|
|
|
id: 'workflows/upgrade',
|
|
|
|
},
|
2023-07-24 04:30:53 -04:00
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Expose a service',
|
|
|
|
id: 'workflows/lb',
|
|
|
|
},
|
2022-12-09 07:28:29 -05:00
|
|
|
{
|
|
|
|
type: 'doc',
|
2022-12-12 07:55:55 -05:00
|
|
|
label: 'Install cert-manager',
|
|
|
|
id: 'workflows/cert-manager',
|
2022-12-09 07:28:29 -05:00
|
|
|
},
|
2023-10-10 09:35:23 -04:00
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Install s3proxy',
|
|
|
|
id: 'workflows/s3proxy',
|
|
|
|
},
|
2022-09-02 05:52:42 -04:00
|
|
|
{
|
|
|
|
type: 'doc',
|
2022-09-13 09:12:05 -04:00
|
|
|
label: 'Terminate your cluster',
|
|
|
|
id: 'workflows/terminate',
|
2022-09-02 05:52:42 -04:00
|
|
|
},
|
2022-09-07 09:05:24 -04:00
|
|
|
{
|
|
|
|
type: 'doc',
|
2022-09-13 09:12:05 -04:00
|
|
|
label: 'Recover your cluster',
|
|
|
|
id: 'workflows/recovery',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Verify your cluster',
|
|
|
|
id: 'workflows/verify-cluster',
|
2022-09-07 09:05:24 -04:00
|
|
|
},
|
2022-09-02 05:52:42 -04:00
|
|
|
{
|
|
|
|
type: 'doc',
|
2022-09-13 09:12:05 -04:00
|
|
|
label: 'Use persistent storage',
|
|
|
|
id: 'workflows/storage',
|
2022-09-02 05:52:42 -04:00
|
|
|
},
|
2023-11-16 11:03:24 -05:00
|
|
|
{
|
|
|
|
type: 'doc',
|
2023-12-14 09:47:55 -05:00
|
|
|
label: 'Use the Terraform provider',
|
|
|
|
id: 'workflows/terraform-provider',
|
2023-11-16 11:03:24 -05:00
|
|
|
},
|
2022-11-29 06:36:43 -05:00
|
|
|
// {
|
|
|
|
// type: 'doc',
|
|
|
|
// label: 'Use Azure trusted launch VMs',
|
|
|
|
// id: 'workflows/trusted-launch',
|
|
|
|
// },
|
2022-10-21 09:19:51 -04:00
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Consume SBOMs',
|
|
|
|
id: 'workflows/sbom',
|
|
|
|
},
|
2022-09-02 05:52:42 -04:00
|
|
|
{
|
|
|
|
type: 'doc',
|
2022-09-13 09:12:05 -04:00
|
|
|
label: 'Troubleshooting',
|
|
|
|
id: 'workflows/troubleshooting',
|
2022-09-02 05:52:42 -04:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'category',
|
|
|
|
label: 'Architecture',
|
|
|
|
link: {
|
|
|
|
type: 'generated-index',
|
|
|
|
},
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Overview',
|
|
|
|
id: 'architecture/overview',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
2022-10-07 09:43:15 -04:00
|
|
|
label: 'Cluster orchestration',
|
|
|
|
id: 'architecture/orchestration',
|
2022-09-02 05:52:42 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
2022-10-07 09:43:15 -04:00
|
|
|
label: 'Versions and support',
|
|
|
|
id: 'architecture/versions',
|
2022-09-02 05:52:42 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
2023-03-04 12:28:17 -05:00
|
|
|
label: 'Microservices',
|
2023-03-03 02:42:53 -05:00
|
|
|
id: 'architecture/microservices',
|
2022-09-02 05:52:42 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
2022-10-07 09:43:15 -04:00
|
|
|
label: 'Attestation',
|
|
|
|
id: 'architecture/attestation',
|
2022-09-02 05:52:42 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Images',
|
|
|
|
id: 'architecture/images',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Keys and cryptographic primitives',
|
|
|
|
id: 'architecture/keys',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Encrypted persistent storage',
|
|
|
|
id: 'architecture/encrypted-storage',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Networking',
|
|
|
|
id: 'architecture/networking',
|
|
|
|
},
|
2023-10-04 03:37:46 -04:00
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'Observability',
|
|
|
|
id: 'architecture/observability',
|
|
|
|
},
|
2022-09-02 05:52:42 -04:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'category',
|
|
|
|
label: 'Reference',
|
|
|
|
link: {
|
|
|
|
type: 'generated-index',
|
|
|
|
},
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
label: 'CLI',
|
|
|
|
id: 'reference/cli',
|
|
|
|
},
|
2022-11-22 11:26:08 -05:00
|
|
|
{
|
|
|
|
type: 'doc',
|
2022-11-29 06:56:28 -05:00
|
|
|
label: 'Configuration migrations',
|
2023-06-09 05:16:54 -04:00
|
|
|
id: 'reference/migration',
|
2022-11-22 11:26:08 -05:00
|
|
|
},
|
2022-11-29 06:56:28 -05:00
|
|
|
{
|
|
|
|
type: 'doc',
|
2023-03-04 12:28:17 -05:00
|
|
|
label: 'Terraform usage',
|
|
|
|
id: 'reference/terraform',
|
2022-11-29 06:56:28 -05:00
|
|
|
},
|
2023-02-28 04:36:20 -05:00
|
|
|
{
|
|
|
|
type: 'doc',
|
2023-03-04 12:28:17 -05:00
|
|
|
label: 'SLSA adoption',
|
|
|
|
id: 'reference/slsa',
|
2023-02-28 04:36:20 -05:00
|
|
|
},
|
2022-09-02 05:52:42 -04:00
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = sidebars;
|