2020-02-06 23:45:31 +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
|
|
|
|
// the landing page for the category
|
|
|
|
|
|
|
|
export default [
|
2020-03-20 21:00:59 +00:00
|
|
|
{
|
|
|
|
category: 'install',
|
|
|
|
content: [
|
2020-09-22 16:07:43 +00:00
|
|
|
'quickstart',
|
2020-03-20 21:00:59 +00:00
|
|
|
{
|
|
|
|
category: 'production',
|
|
|
|
content: [
|
|
|
|
'requirements',
|
|
|
|
'nomad-agent',
|
2020-09-11 00:15:09 +00:00
|
|
|
{
|
|
|
|
title: 'Reference Architecture',
|
|
|
|
href:
|
|
|
|
'https://learn.hashicorp.com/tutorials/nomad/production-reference-architecture-vm-with-consul',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Deployment Guide',
|
|
|
|
href:
|
|
|
|
'https://learn.hashicorp.com/tutorials/nomad/production-deployment-guide-vm-with-consul',
|
|
|
|
},
|
|
|
|
],
|
2020-03-20 21:00:59 +00:00
|
|
|
},
|
2020-09-11 00:15:09 +00:00
|
|
|
'windows-service',
|
|
|
|
],
|
2020-03-20 21:00:59 +00:00
|
|
|
},
|
|
|
|
{ category: 'upgrade', content: ['upgrade-specific'] },
|
|
|
|
{
|
|
|
|
category: 'integrations',
|
2020-09-11 00:15:09 +00:00
|
|
|
content: ['consul-integration', 'consul-connect', 'vault-integration'],
|
2020-03-20 21:00:59 +00:00
|
|
|
},
|
|
|
|
'-----------',
|
2020-02-06 23:45:31 +00:00
|
|
|
{
|
|
|
|
category: 'internals',
|
|
|
|
content: [
|
|
|
|
'architecture',
|
2020-09-11 00:15:09 +00:00
|
|
|
{
|
|
|
|
category: 'plugins',
|
|
|
|
content: ['base', 'task-drivers', 'devices', 'csi'],
|
|
|
|
},
|
2020-02-06 23:45:31 +00:00
|
|
|
{
|
|
|
|
category: 'scheduling',
|
2020-09-11 00:15:09 +00:00
|
|
|
content: ['scheduling', 'preemption'],
|
2020-02-06 23:45:31 +00:00
|
|
|
},
|
|
|
|
'consensus',
|
2020-11-04 14:59:19 +00:00
|
|
|
'filesystem',
|
2020-07-06 18:54:49 +00:00
|
|
|
'gossip',
|
2020-11-04 14:59:19 +00:00
|
|
|
'security'
|
2020-09-11 00:15:09 +00:00
|
|
|
],
|
2020-02-06 23:45:31 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
category: 'configuration',
|
|
|
|
content: [
|
|
|
|
'acl',
|
2020-03-23 15:13:32 +00:00
|
|
|
'audit',
|
2020-02-06 23:45:31 +00:00
|
|
|
'autopilot',
|
|
|
|
'client',
|
|
|
|
'consul',
|
|
|
|
'plugin',
|
|
|
|
'sentinel',
|
|
|
|
'server',
|
|
|
|
'server_join',
|
|
|
|
'telemetry',
|
|
|
|
'tls',
|
2020-09-11 00:15:09 +00:00
|
|
|
'vault',
|
|
|
|
],
|
2020-02-06 23:45:31 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
category: 'commands',
|
|
|
|
content: [
|
|
|
|
{
|
|
|
|
category: 'acl',
|
|
|
|
content: [
|
|
|
|
'bootstrap',
|
|
|
|
'policy-apply',
|
|
|
|
'policy-delete',
|
|
|
|
'policy-info',
|
|
|
|
'policy-list',
|
|
|
|
'token-create',
|
|
|
|
'token-delete',
|
|
|
|
'token-info',
|
|
|
|
'token-list',
|
|
|
|
'token-self',
|
2020-09-11 00:15:09 +00:00
|
|
|
'token-update',
|
|
|
|
],
|
2020-02-06 23:45:31 +00:00
|
|
|
},
|
|
|
|
'agent',
|
|
|
|
'agent-info',
|
|
|
|
{
|
|
|
|
category: 'alloc',
|
2020-09-11 00:15:09 +00:00
|
|
|
content: ['exec', 'fs', 'logs', 'restart', 'signal', 'status', 'stop'],
|
2020-02-06 23:45:31 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
category: 'deployment',
|
2020-09-11 00:15:09 +00:00
|
|
|
content: [
|
|
|
|
'fail',
|
|
|
|
'list',
|
|
|
|
'pause',
|
|
|
|
'promote',
|
|
|
|
'resume',
|
|
|
|
'status',
|
|
|
|
'unblock',
|
|
|
|
],
|
2020-02-06 23:45:31 +00:00
|
|
|
},
|
2020-11-02 17:57:35 +00:00
|
|
|
{
|
|
|
|
category: 'event',
|
|
|
|
content: [
|
|
|
|
'sink-deregister',
|
|
|
|
'sink-list',
|
|
|
|
'sink-register',
|
|
|
|
],
|
|
|
|
},
|
2020-02-06 23:45:31 +00:00
|
|
|
'eval-status',
|
|
|
|
{
|
|
|
|
category: 'job',
|
|
|
|
content: [
|
|
|
|
'deployments',
|
|
|
|
'dispatch',
|
|
|
|
'eval',
|
|
|
|
'history',
|
|
|
|
'init',
|
|
|
|
'inspect',
|
|
|
|
'plan',
|
|
|
|
'periodic-force',
|
|
|
|
'promote',
|
|
|
|
'revert',
|
|
|
|
'run',
|
2020-10-23 07:30:04 +00:00
|
|
|
'scale',
|
|
|
|
'scaling-events',
|
2020-02-06 23:45:31 +00:00
|
|
|
'status',
|
|
|
|
'stop',
|
2020-09-11 00:15:09 +00:00
|
|
|
'validate',
|
|
|
|
],
|
2020-02-06 23:45:31 +00:00
|
|
|
},
|
2020-06-01 14:55:03 +00:00
|
|
|
{
|
|
|
|
category: 'license',
|
2020-09-11 00:15:09 +00:00
|
|
|
content: ['get', 'put'],
|
2020-06-01 14:55:03 +00:00
|
|
|
},
|
2020-02-06 23:45:31 +00:00
|
|
|
'monitor',
|
|
|
|
{
|
|
|
|
category: 'namespace',
|
2020-09-11 00:15:09 +00:00
|
|
|
content: ['apply', 'delete', 'inspect', 'list', 'status'],
|
2020-02-06 23:45:31 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
category: 'node',
|
2020-09-11 00:15:09 +00:00
|
|
|
content: ['config', 'drain', 'eligibility', 'status'],
|
2020-02-06 23:45:31 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
category: 'operator',
|
|
|
|
content: [
|
|
|
|
'autopilot-get-config',
|
|
|
|
'autopilot-set-config',
|
2020-08-11 19:39:44 +00:00
|
|
|
'debug',
|
2020-02-06 23:45:31 +00:00
|
|
|
'keygen',
|
|
|
|
'keyring',
|
|
|
|
'raft-list-peers',
|
2020-06-19 18:11:48 +00:00
|
|
|
'raft-remove-peer',
|
|
|
|
'snapshot-agent',
|
|
|
|
'snapshot-inspect',
|
|
|
|
'snapshot-restore',
|
2020-09-11 00:15:09 +00:00
|
|
|
'snapshot-save',
|
|
|
|
],
|
2020-02-06 23:45:31 +00:00
|
|
|
},
|
2020-03-24 15:09:46 +00:00
|
|
|
{ category: 'plugin', content: ['status'] },
|
2020-02-06 23:45:31 +00:00
|
|
|
{
|
|
|
|
category: 'quota',
|
2020-09-11 00:15:09 +00:00
|
|
|
content: ['apply', 'delete', 'init', 'inspect', 'list', 'status'],
|
2020-02-06 23:45:31 +00:00
|
|
|
},
|
2020-10-27 06:15:11 +00:00
|
|
|
{ category: 'scaling', content: ['policy-info', 'policy-list'] },
|
2020-02-06 23:45:31 +00:00
|
|
|
{ category: 'sentinel', content: ['apply', 'delete', 'list', 'read'] },
|
|
|
|
{ category: 'server', content: ['force-leave', 'join', 'members'] },
|
|
|
|
'status',
|
|
|
|
{ category: 'system', content: ['gc', 'reconcile-summaries'] },
|
|
|
|
'ui',
|
2020-03-24 15:09:46 +00:00
|
|
|
'version',
|
2020-09-11 00:15:09 +00:00
|
|
|
{
|
|
|
|
category: 'volume',
|
|
|
|
content: ['deregister', 'detach', 'status', 'register'],
|
|
|
|
},
|
|
|
|
],
|
2020-02-06 23:45:31 +00:00
|
|
|
},
|
|
|
|
'----------',
|
|
|
|
{
|
|
|
|
category: 'job-specification',
|
|
|
|
content: [
|
2020-11-02 17:27:53 +00:00
|
|
|
'hcl2',
|
2020-02-06 23:45:31 +00:00
|
|
|
'artifact',
|
|
|
|
'affinity',
|
|
|
|
'check_restart',
|
|
|
|
'connect',
|
|
|
|
'constraint',
|
2020-03-24 15:09:46 +00:00
|
|
|
'csi_plugin',
|
2020-02-06 23:45:31 +00:00
|
|
|
'device',
|
|
|
|
'dispatch_payload',
|
|
|
|
'env',
|
|
|
|
'ephemeral_disk',
|
2020-03-20 18:22:14 +00:00
|
|
|
'expose',
|
2020-07-28 20:12:08 +00:00
|
|
|
'gateway',
|
2020-02-06 23:45:31 +00:00
|
|
|
'group',
|
|
|
|
'job',
|
2020-03-25 16:57:53 +00:00
|
|
|
'lifecycle',
|
2020-02-06 23:45:31 +00:00
|
|
|
'logs',
|
|
|
|
'meta',
|
|
|
|
'migrate',
|
2020-06-18 12:41:22 +00:00
|
|
|
'multiregion',
|
2020-02-06 23:45:31 +00:00
|
|
|
'network',
|
|
|
|
'parameterized',
|
|
|
|
'periodic',
|
|
|
|
'proxy',
|
|
|
|
'reschedule',
|
|
|
|
'resources',
|
|
|
|
'restart',
|
2020-03-24 22:26:34 +00:00
|
|
|
'scaling',
|
2020-02-06 23:45:31 +00:00
|
|
|
'service',
|
|
|
|
'sidecar_service',
|
|
|
|
'sidecar_task',
|
|
|
|
'spread',
|
|
|
|
'task',
|
|
|
|
'template',
|
|
|
|
'update',
|
|
|
|
'upstreams',
|
|
|
|
'vault',
|
|
|
|
'volume',
|
2020-09-11 00:15:09 +00:00
|
|
|
'volume_mount',
|
|
|
|
],
|
2020-02-06 23:45:31 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
category: 'drivers',
|
|
|
|
content: [
|
|
|
|
'docker',
|
|
|
|
'exec',
|
|
|
|
'java',
|
2020-07-22 18:55:40 +00:00
|
|
|
'podman',
|
2020-02-06 23:45:31 +00:00
|
|
|
'qemu',
|
|
|
|
'raw_exec',
|
|
|
|
{
|
|
|
|
category: 'external',
|
|
|
|
content: [
|
2020-08-28 15:05:20 +00:00
|
|
|
'containerd',
|
|
|
|
'firecracker-task-driver',
|
|
|
|
'jail-task-driver',
|
2020-02-06 23:45:31 +00:00
|
|
|
'lxc',
|
2020-08-28 15:05:20 +00:00
|
|
|
'pot',
|
2020-04-08 03:13:16 +00:00
|
|
|
'rkt',
|
2020-02-06 23:45:31 +00:00
|
|
|
'singularity',
|
2020-05-29 22:07:02 +00:00
|
|
|
'nspawn',
|
2020-09-11 00:15:09 +00:00
|
|
|
'iis',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
2020-02-06 23:45:31 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
category: 'devices',
|
2020-09-11 00:15:09 +00:00
|
|
|
content: ['nvidia', 'community'],
|
2020-02-06 23:45:31 +00:00
|
|
|
},
|
|
|
|
'schedulers',
|
|
|
|
{ category: 'runtime', content: ['environment', 'interpolation'] },
|
2020-07-01 11:03:49 +00:00
|
|
|
{
|
|
|
|
category: 'autoscaling',
|
|
|
|
content: [
|
|
|
|
'agent',
|
|
|
|
'api',
|
|
|
|
'cli',
|
|
|
|
'policy',
|
2020-09-08 07:13:53 +00:00
|
|
|
'telemetry',
|
2020-07-01 11:03:49 +00:00
|
|
|
{
|
|
|
|
category: 'plugins',
|
2020-09-11 00:15:09 +00:00
|
|
|
content: ['apm', 'strategy', 'target'],
|
2020-07-01 11:03:49 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
category: 'internals',
|
2020-09-11 00:15:09 +00:00
|
|
|
content: ['checks'],
|
|
|
|
},
|
|
|
|
],
|
2020-07-01 11:03:49 +00:00
|
|
|
},
|
2020-02-06 23:45:31 +00:00
|
|
|
{ category: 'telemetry', content: ['metrics'] },
|
|
|
|
'------------',
|
2020-09-22 16:07:43 +00:00
|
|
|
'enterprise',
|
2020-09-11 00:15:09 +00:00
|
|
|
'faq',
|
2020-02-06 23:45:31 +00:00
|
|
|
]
|