open-consul/website/data/docs-navigation.js

268 lines
6.7 KiB
JavaScript
Raw Normal View History

2020-04-06 20:27:35 +00:00
// The root folder for this documentation category is `pages/docs`
//
// - A string refers to the name of a file
// - A "category" value refers to the name of a directory
// - All directories must have an "index.mdx" file to serve as
2020-04-13 22:55:29 +00:00
// the landing page for the category, or a "name" property to
// serve as the category title in the sidebar
2020-04-06 20:27:35 +00:00
2020-04-07 23:56:08 +00:00
export default [
{ category: 'install', content: ['ports', 'bootstrapping', 'performance'] },
{
2020-04-09 19:15:05 +00:00
category: 'upgrading',
2020-04-07 23:56:08 +00:00
content: ['compatibility', 'upgrade-specific'],
},
'glossary',
{
category: 'internals',
content: [
'architecture',
'consensus',
'gossip',
'coordinates',
'sessions',
'anti-entropy',
'security',
'jepsen',
'discovery-chain',
],
},
{
category: 'commands',
content: [
{
category: 'acl',
content: [
{
2020-04-09 19:15:05 +00:00
category: 'auth-method',
2020-04-07 23:56:08 +00:00
content: ['create', 'delete', 'list', 'read', 'update'],
},
{
category: 'binding-rule',
content: ['create', 'delete', 'list', 'read', 'update'],
},
'bootstrap',
{
category: 'policy',
content: ['create', 'delete', 'list', 'read', 'update'],
},
{
category: 'role',
content: ['create', 'delete', 'list', 'read', 'update'],
},
'set-agent-token',
{
category: 'token',
content: ['clone', 'create', 'delete', 'list', 'read', 'update'],
},
'translate-rules',
],
},
'agent',
2020-04-09 19:15:05 +00:00
{ category: 'catalog', content: ['datacenters', 'nodes', 'services'] },
{ category: 'config', content: ['delete', 'list', 'read', 'write'] },
2020-06-05 21:54:45 +00:00
{ category: 'connect', content: ['ca', 'proxy', 'envoy', 'expose'] },
2020-04-07 23:56:08 +00:00
'debug',
'event',
'exec',
'force-leave',
'info',
{
2020-04-09 19:15:05 +00:00
category: 'intention',
2020-04-07 23:56:08 +00:00
content: ['check', 'create', 'delete', 'get', 'match'],
},
'join',
'keygen',
'keyring',
{
2020-04-09 19:15:05 +00:00
category: 'kv',
2020-04-07 23:56:08 +00:00
content: ['delete', 'export', 'get', 'import', 'put'],
},
'leave',
'license',
'lock',
'login',
'logout',
'maint',
'members',
'monitor',
{
2020-04-09 19:15:05 +00:00
category: 'namespace',
2020-04-07 23:56:08 +00:00
content: ['create', 'delete', 'list', 'read', 'update', 'write'],
},
{
2020-04-09 19:15:05 +00:00
category: 'operator',
2020-04-07 23:56:08 +00:00
content: ['area', 'autopilot', 'raft'],
},
'reload',
'rtt',
2020-04-09 19:15:05 +00:00
{ category: 'services', content: ['register', 'deregister'] },
2020-04-07 23:56:08 +00:00
{
2020-04-09 19:15:05 +00:00
category: 'snapshot',
2020-04-07 23:56:08 +00:00
content: ['agent', 'inspect', 'restore', 'save'],
},
2020-04-09 19:15:05 +00:00
{ category: 'tls', content: ['ca', 'cert'] },
2020-04-07 23:56:08 +00:00
'validate',
'version',
'watch',
],
},
{
2020-04-09 19:15:05 +00:00
category: 'agent',
2020-04-07 23:56:08 +00:00
content: [
'dns',
'options',
{
2020-04-09 19:15:05 +00:00
category: 'config-entries',
2020-04-07 23:56:08 +00:00
content: [
'ingress-gateway',
'proxy-defaults',
'service-defaults',
'service-resolver',
2020-04-07 23:56:08 +00:00
'service-router',
'service-splitter',
'terminating-gateway',
2020-04-07 23:56:08 +00:00
],
},
'cloud-auto-join',
'services',
'checks',
'kv',
'sentinel',
'encryption',
'telemetry',
'watches',
],
},
{
category: 'acl',
content: [
'acl-system',
'acl-rules',
'acl-legacy',
'acl-migrate-tokens',
{ category: 'auth-methods', content: ['kubernetes', 'jwt', 'oidc'] },
2020-04-07 23:56:08 +00:00
],
},
{
category: 'connect',
content: [
'configuration',
'observability',
'l7-traffic-management',
'intentions',
'connect-internals',
{
2020-04-09 19:15:05 +00:00
category: 'proxies',
2020-04-07 23:56:08 +00:00
content: ['envoy', 'built-in', 'integrate'],
},
'mesh-gateway',
'wan-federation-via-mesh-gateways',
'ingress-gateway',
'terminating-gateway',
2020-04-07 23:56:08 +00:00
{
2020-04-09 19:15:05 +00:00
category: 'registration',
2020-04-07 23:56:08 +00:00
content: ['service-registration', 'sidecar-service'],
},
'security',
{
2020-04-09 19:15:05 +00:00
category: 'ca',
2020-04-07 23:56:08 +00:00
content: ['consul', 'vault', 'aws'],
},
2020-04-09 19:15:05 +00:00
{ category: 'native', content: ['go'] },
2020-04-07 23:56:08 +00:00
'dev',
2020-04-09 19:15:05 +00:00
'nomad',
{ title: 'Kubernetes', href: '/docs/k8s/connect' },
2020-04-07 23:56:08 +00:00
],
},
{
2020-04-09 19:15:05 +00:00
category: 'k8s',
2020-04-07 23:56:08 +00:00
content: [
{
name: 'Installation',
2020-04-09 19:15:05 +00:00
category: 'installation',
2020-04-07 23:56:08 +00:00
content: [
'overview',
{
category: 'platforms',
name: 'Platform Guides',
content: [
{
title: 'Minikube',
href:
'https://learn.hashicorp.com/consul/kubernetes/minikube?utm_source=consul.io&utm_medium=docs&utm_content=k8s&utm_term=mk',
},
{
title: 'AKS (Azure)',
href:
'https://learn.hashicorp.com/consul/kubernetes/azure-k8s?utm_source=consul.io&utm_medium=docs&utm_content=k8s&utm_term=aks',
},
{
title: 'EKS (AWS)',
href:
'https://learn.hashicorp.com/consul/kubernetes/aws-k8s?utm_source=consul.io&utm_medium=docs&utm_content=k8s&utm_term=eks',
},
{
title: 'GKE (Google Cloud)',
href:
'https://learn.hashicorp.com/consul/kubernetes/google-cloud-k8s?utm_source=consul.io&utm_medium=docs&utm_content=k8s&utm_term=gke',
},
'self-hosted-kubernetes',
],
},
{
category: 'deployment-configurations',
name: 'Deployment Configurations',
content: [
'clients-outside-kubernetes',
'servers-outside-kubernetes',
'consul-enterprise',
],
},
{
category: 'multi-cluster',
name: 'Multi-Cluster Federation',
content: ['overview', 'kubernetes', 'vms-and-kubernetes'],
},
2020-04-07 23:56:08 +00:00
],
},
{
2020-04-09 19:15:05 +00:00
category: 'operations',
name: 'Operations',
2020-04-07 23:56:08 +00:00
content: ['upgrading', 'tls-on-existing-cluster', 'uninstalling'],
},
{
category: 'connect',
name: 'Connect Service Mesh',
content: [
'overview',
'ingress-gateways',
],
},
'service-sync',
'dns',
2020-04-07 23:56:08 +00:00
'ambassador',
'helm',
],
},
'-------',
'common-errors',
'faq',
'--------',
2020-04-09 19:15:05 +00:00
'partnerships',
2020-04-07 23:56:08 +00:00
{
category: 'enterprise',
content: [
'audit-logging',
2020-04-09 19:15:05 +00:00
'backups',
2020-04-07 23:56:08 +00:00
'upgrades',
'read-scale',
'redundancy',
'federation',
'network-segments',
'namespaces',
'sentinel',
],
},
]