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>
16 lines
478 B
JavaScript
16 lines
478 B
JavaScript
// The root folder for this documentation category is `pages/intro`
|
|
//
|
|
// - 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
|
|
// the landing page for the category
|
|
|
|
export default [
|
|
'use-cases',
|
|
{ category: 'vs', content: ['ecs', 'mesos', 'terraform'] },
|
|
{
|
|
category: 'getting-started',
|
|
content: ['running', 'jobs', 'cluster', 'ui', 'next-steps'],
|
|
},
|
|
]
|