mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
a87b7894db
* add current chart add current helm chart * disable service controller for aws ccm * add new iam roles * doc AWS internet LB + add to LB test * pass clusterName to helm for AWS LB * fix update-aws-lb chart to also include .helmignore * move chart outside services * working state * add subnet tags for AWS subnet discovery * fix .helmignore load rule with file in subdirectory * upgrade iam profile * revert new loader impl since cilium is not correctly loaded * install chart if not already present during `upgrade apply` * cleanup PR + fix build + add todos cleanup PR + add todos * shared helm pkg for cli install and bootstrapper * add link to eks docs * refactor iamMigrationCmd * delete unused helm.symwallk * move iammigrate to upgrade pkg * fixup! delete unused helm.symwallk * add to upgradecheck * remove nodeSelector from go code (Otto) * update iam docs and sort permission + remove duplicate roles * fix bug in `upgrade check` * better upgrade check output when svc version upgrade not possible * pr feedback * remove force flag in upgrade_test * use upgrader.GetUpgradeID instead of extra type * remove todos + fix check * update doc lb (leo) * remove bootstrapper helm package * Update cli/internal/cmd/upgradecheck.go Co-authored-by: Daniel Weiße <66256922+daniel-weisse@users.noreply.github.com> * final nits * add docs for e2e upgrade test setup * Apply suggestions from code review Co-authored-by: Daniel Weiße <66256922+daniel-weisse@users.noreply.github.com> * Update cli/internal/helm/loader.go Co-authored-by: Daniel Weiße <66256922+daniel-weisse@users.noreply.github.com> * Update cli/internal/cmd/tfmigrationclient.go Co-authored-by: Daniel Weiße <66256922+daniel-weisse@users.noreply.github.com> * fix daniel review * link to the iam permissions instead of manually updating them (agreed with leo) * disable iam upgrade in upgrade apply --------- Co-authored-by: Daniel Weiße <66256922+daniel-weisse@users.noreply.github.com> Co-authored-by: Malte Poll
280 lines
6.3 KiB
JavaScript
280 lines
6.3 KiB
JavaScript
/**
|
|
* 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',
|
|
label: 'Introduction',
|
|
id: 'intro'
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Basics',
|
|
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',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
label: 'Feature status of clouds',
|
|
id: 'overview/clouds',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
label: 'Performance',
|
|
id: 'overview/performance',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
label: 'License',
|
|
id: 'overview/license',
|
|
},
|
|
]
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Getting started',
|
|
link: {
|
|
type: 'generated-index',
|
|
},
|
|
items: [
|
|
{
|
|
type: 'doc',
|
|
label: 'Installation',
|
|
id: 'getting-started/install',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
label: 'First steps (cloud)',
|
|
id: 'getting-started/first-steps',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
label: 'First steps (local)',
|
|
id: 'getting-started/first-steps-local',
|
|
},
|
|
{
|
|
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'
|
|
},
|
|
]
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Workflows',
|
|
link: {
|
|
type: 'generated-index',
|
|
},
|
|
items: [
|
|
{
|
|
type: 'doc',
|
|
label: 'Verify the CLI',
|
|
id: 'workflows/verify-cli',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
label: 'Configure your cluster',
|
|
id: 'workflows/config',
|
|
},
|
|
{
|
|
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',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
label: 'Expose a service',
|
|
id: 'workflows/lb',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
label: 'Install cert-manager',
|
|
id: 'workflows/cert-manager',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
label: 'Terminate your cluster',
|
|
id: 'workflows/terminate',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
label: 'Recover your cluster',
|
|
id: 'workflows/recovery',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
label: 'Verify your cluster',
|
|
id: 'workflows/verify-cluster',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
label: 'Use persistent storage',
|
|
id: 'workflows/storage',
|
|
},
|
|
// {
|
|
// type: 'doc',
|
|
// label: 'Use Azure trusted launch VMs',
|
|
// id: 'workflows/trusted-launch',
|
|
// },
|
|
{
|
|
type: 'doc',
|
|
label: 'Consume SBOMs',
|
|
id: 'workflows/sbom',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
label: 'Troubleshooting',
|
|
id: 'workflows/troubleshooting',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Architecture',
|
|
link: {
|
|
type: 'generated-index',
|
|
},
|
|
items: [
|
|
{
|
|
type: 'doc',
|
|
label: 'Overview',
|
|
id: 'architecture/overview',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
label: 'Cluster orchestration',
|
|
id: 'architecture/orchestration',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
label: 'Versions and support',
|
|
id: 'architecture/versions',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
label: 'Microservices',
|
|
id: 'architecture/microservices',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
label: 'Attestation',
|
|
id: 'architecture/attestation',
|
|
},
|
|
{
|
|
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',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Reference',
|
|
link: {
|
|
type: 'generated-index',
|
|
},
|
|
items: [
|
|
{
|
|
type: 'doc',
|
|
label: 'CLI',
|
|
id: 'reference/cli',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
label: 'Configuration migrations',
|
|
id: 'reference/migration',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
label: 'Terraform usage',
|
|
id: 'reference/terraform',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
label: 'SLSA adoption',
|
|
id: 'reference/slsa',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|
|
|
|
module.exports = sidebars;
|