0be0fb54b7
* website: add k8s vs callout to homepage * website: move resources to community * website: add k8s comparison, ecosytem to docs * website: update redirects * website: fix homepage link * website: fix sidebar data * Update website/pages/docs/nomad-vs-kubernetes/index.mdx Co-authored-by: changli0617 <39781496+changli0617@users.noreply.github.com> * Update website/pages/docs/nomad-vs-kubernetes/alternative.mdx Co-authored-by: changli0617 <39781496+changli0617@users.noreply.github.com> * Update website/pages/docs/nomad-vs-kubernetes/alternative.mdx Co-authored-by: changli0617 <39781496+changli0617@users.noreply.github.com> * Update website/pages/docs/nomad-vs-kubernetes/alternative.mdx Co-authored-by: changli0617 <39781496+changli0617@users.noreply.github.com> Co-authored-by: changli0617 <39781496+changli0617@users.noreply.github.com>
47 lines
972 B
JavaScript
47 lines
972 B
JavaScript
export default [
|
|
{ text: 'Overview', url: '/', type: 'inbound' },
|
|
{
|
|
text: 'Use Cases',
|
|
submenu: [
|
|
{
|
|
text: 'Simple Container Orchestration',
|
|
url: '/use-cases/simple-container-orchestration',
|
|
},
|
|
{
|
|
text: 'Non-Containerized Application Orchestration',
|
|
url: '/use-cases/non-containerized-application-orchestration',
|
|
},
|
|
{
|
|
text: 'Automated Service Networking with Consul',
|
|
url: '/use-cases/automated-service-networking-with-consul',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
text: 'Enterprise',
|
|
url: 'https://www.hashicorp.com/products/nomad/',
|
|
type: 'outbound',
|
|
},
|
|
'divider',
|
|
{
|
|
text: 'Tutorials',
|
|
url: 'https://learn.hashicorp.com/nomad',
|
|
type: 'outbound',
|
|
},
|
|
{
|
|
text: 'Docs',
|
|
url: '/docs',
|
|
type: 'inbound',
|
|
},
|
|
{
|
|
text: 'API',
|
|
url: '/api-docs',
|
|
type: 'inbound',
|
|
},
|
|
{
|
|
text: 'Community',
|
|
url: '/community',
|
|
type: 'inbound',
|
|
},
|
|
]
|