diff --git a/website/.env b/website/.env index 420f6cb9b..ba8afb344 100644 --- a/website/.env +++ b/website/.env @@ -1,4 +1,3 @@ NEXT_PUBLIC_ALGOLIA_APP_ID=YY0FFNI7MF NEXT_PUBLIC_ALGOLIA_INDEX=product_NOMAD NEXT_PUBLIC_ALGOLIA_SEARCH_ONLY_API_KEY=5037da4824714676226913c65e961ca0 -HASHI_ENV=production diff --git a/website/.env.production b/website/.env.production new file mode 100644 index 000000000..83825a896 --- /dev/null +++ b/website/.env.production @@ -0,0 +1 @@ +HASHI_ENV=production diff --git a/website/babel.config.js b/website/babel.config.js deleted file mode 100644 index 3cf0d791c..000000000 --- a/website/babel.config.js +++ /dev/null @@ -1,4 +0,0 @@ -module.exports = { - presets: ['next/babel'], - plugins: ['import-glob-array'], -} diff --git a/website/components/search-bar/index.jsx b/website/components/search-bar/index.jsx deleted file mode 100644 index 235f04641..000000000 --- a/website/components/search-bar/index.jsx +++ /dev/null @@ -1,28 +0,0 @@ -import Search from '@hashicorp/react-search' - -export default function SearchBar() { - return ( - ( - <> - - - - - - - - )} - resolveHitLink={(hit) => ({ - href: { - pathname: `/${transformIdtoUrl(hit.objectID)}`, - }, - })} - placeholder="Search Nomad documentation" - /> - ) -} - -function transformIdtoUrl(id) { - return id.replace(/\/index$/, '') -} diff --git a/website/components/search-bar/style.css b/website/components/search-bar/style.css deleted file mode 100644 index 2e96e97a4..000000000 --- a/website/components/search-bar/style.css +++ /dev/null @@ -1,8 +0,0 @@ -.g-search { - width: calc(100% - 2rem); - max-width: 600px; - - & .c-hits .ais-Highlight-highlighted { - background-color: #c1f1e0; - } -} diff --git a/website/layouts/use-cases/index.jsx b/website/components/use-case-page/index.jsx similarity index 100% rename from website/layouts/use-cases/index.jsx rename to website/components/use-case-page/index.jsx diff --git a/website/layouts/use-cases/style.css b/website/components/use-case-page/style.css similarity index 100% rename from website/layouts/use-cases/style.css rename to website/components/use-case-page/style.css diff --git a/website/pages/api-docs/acl-policies.mdx b/website/content/api-docs/acl-policies.mdx similarity index 100% rename from website/pages/api-docs/acl-policies.mdx rename to website/content/api-docs/acl-policies.mdx diff --git a/website/pages/api-docs/acl-tokens.mdx b/website/content/api-docs/acl-tokens.mdx similarity index 100% rename from website/pages/api-docs/acl-tokens.mdx rename to website/content/api-docs/acl-tokens.mdx diff --git a/website/pages/api-docs/agent.mdx b/website/content/api-docs/agent.mdx similarity index 100% rename from website/pages/api-docs/agent.mdx rename to website/content/api-docs/agent.mdx diff --git a/website/pages/api-docs/allocations.mdx b/website/content/api-docs/allocations.mdx similarity index 100% rename from website/pages/api-docs/allocations.mdx rename to website/content/api-docs/allocations.mdx diff --git a/website/pages/api-docs/client.mdx b/website/content/api-docs/client.mdx similarity index 100% rename from website/pages/api-docs/client.mdx rename to website/content/api-docs/client.mdx diff --git a/website/pages/api-docs/deployments.mdx b/website/content/api-docs/deployments.mdx similarity index 100% rename from website/pages/api-docs/deployments.mdx rename to website/content/api-docs/deployments.mdx diff --git a/website/pages/api-docs/evaluations.mdx b/website/content/api-docs/evaluations.mdx similarity index 100% rename from website/pages/api-docs/evaluations.mdx rename to website/content/api-docs/evaluations.mdx diff --git a/website/pages/api-docs/events.mdx b/website/content/api-docs/events.mdx similarity index 95% rename from website/pages/api-docs/events.mdx rename to website/content/api-docs/events.mdx index 545a4de49..4f6e5c0c0 100644 --- a/website/pages/api-docs/events.mdx +++ b/website/content/api-docs/events.mdx @@ -19,7 +19,6 @@ The stream will be kept alive until the connection is closed. | ------ | ------------------ | ------------------ | | `GET` | `/v1/event/stream` | `application/json` | - The table below shows this endpoint's [required ACLs](/api-docs#acls). Due to the nature of this endpoint individual topics require specific policies. @@ -55,21 +54,21 @@ by default, requiring a management token. `Deployment` events for a job redis. an additional topic `&topic=Deployment:web` would include deployment events for redis and web. To only subscribe to `Node` events a topic parameter of `?topic=Node` without a - separator value would be used. `?topic=Node:*` is also valid. + separator value would be used. `?topic=Node:*` is also valid. ### Event Topics -| Topic | Output | -| ------------ | ------------------------------- | -| ACLToken | ACLToken | -| ACLPolicy | ACLPolicy | -| ACLPolicy | Allocation (no job information) | -| Allocation | Allocation (no job information) | -| Job | Job | -| Evaluation | Evaluation | -| Deployment | Deployment | -| Node | Node | -| NodeDrain | Node | +| Topic | Output | +| ---------- | ------------------------------- | +| ACLToken | ACLToken | +| ACLPolicy | ACLPolicy | +| ACLPolicy | Allocation (no job information) | +| Allocation | Allocation (no job information) | +| Job | Job | +| Evaluation | Evaluation | +| Deployment | Deployment | +| Node | Node | +| NodeDrain | Node | ### Event Types diff --git a/website/pages/api-docs/index.mdx b/website/content/api-docs/index.mdx similarity index 100% rename from website/pages/api-docs/index.mdx rename to website/content/api-docs/index.mdx diff --git a/website/pages/api-docs/jobs.mdx b/website/content/api-docs/jobs.mdx similarity index 100% rename from website/pages/api-docs/jobs.mdx rename to website/content/api-docs/jobs.mdx diff --git a/website/pages/api-docs/json-jobs.mdx b/website/content/api-docs/json-jobs.mdx similarity index 100% rename from website/pages/api-docs/json-jobs.mdx rename to website/content/api-docs/json-jobs.mdx diff --git a/website/pages/api-docs/libraries-and-sdks.mdx b/website/content/api-docs/libraries-and-sdks.mdx similarity index 100% rename from website/pages/api-docs/libraries-and-sdks.mdx rename to website/content/api-docs/libraries-and-sdks.mdx diff --git a/website/pages/api-docs/metrics.mdx b/website/content/api-docs/metrics.mdx similarity index 100% rename from website/pages/api-docs/metrics.mdx rename to website/content/api-docs/metrics.mdx diff --git a/website/pages/api-docs/namespaces.mdx b/website/content/api-docs/namespaces.mdx similarity index 100% rename from website/pages/api-docs/namespaces.mdx rename to website/content/api-docs/namespaces.mdx diff --git a/website/pages/api-docs/nodes.mdx b/website/content/api-docs/nodes.mdx similarity index 100% rename from website/pages/api-docs/nodes.mdx rename to website/content/api-docs/nodes.mdx diff --git a/website/pages/api-docs/operator/autopilot.mdx b/website/content/api-docs/operator/autopilot.mdx similarity index 100% rename from website/pages/api-docs/operator/autopilot.mdx rename to website/content/api-docs/operator/autopilot.mdx diff --git a/website/pages/api-docs/operator/index.mdx b/website/content/api-docs/operator/index.mdx similarity index 100% rename from website/pages/api-docs/operator/index.mdx rename to website/content/api-docs/operator/index.mdx diff --git a/website/pages/api-docs/operator/license.mdx b/website/content/api-docs/operator/license.mdx similarity index 100% rename from website/pages/api-docs/operator/license.mdx rename to website/content/api-docs/operator/license.mdx diff --git a/website/pages/api-docs/operator/raft.mdx b/website/content/api-docs/operator/raft.mdx similarity index 100% rename from website/pages/api-docs/operator/raft.mdx rename to website/content/api-docs/operator/raft.mdx diff --git a/website/pages/api-docs/operator/scheduler.mdx b/website/content/api-docs/operator/scheduler.mdx similarity index 100% rename from website/pages/api-docs/operator/scheduler.mdx rename to website/content/api-docs/operator/scheduler.mdx diff --git a/website/pages/api-docs/operator/snapshot.mdx b/website/content/api-docs/operator/snapshot.mdx similarity index 100% rename from website/pages/api-docs/operator/snapshot.mdx rename to website/content/api-docs/operator/snapshot.mdx diff --git a/website/pages/api-docs/plugins.mdx b/website/content/api-docs/plugins.mdx similarity index 100% rename from website/pages/api-docs/plugins.mdx rename to website/content/api-docs/plugins.mdx diff --git a/website/pages/api-docs/quotas.mdx b/website/content/api-docs/quotas.mdx similarity index 100% rename from website/pages/api-docs/quotas.mdx rename to website/content/api-docs/quotas.mdx diff --git a/website/pages/api-docs/recommendations.mdx b/website/content/api-docs/recommendations.mdx similarity index 96% rename from website/pages/api-docs/recommendations.mdx rename to website/content/api-docs/recommendations.mdx index 5fb85d536..c4a0703c3 100644 --- a/website/pages/api-docs/recommendations.mdx +++ b/website/content/api-docs/recommendations.mdx @@ -204,8 +204,8 @@ The table below shows this endpoint's support for [blocking queries](/api-docs#blocking-queries) and [required ACLs](/api-docs#acls). -| Blocking Queries | ACL Required | -| ---------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | +| Blocking Queries | ACL Required | +| ---------------- | --------------------------------------------------------------------------------- | | `NO` | `namespace:submit-job` with `namespace:sentinel-override` if `PolicyOverride` set | ### Parameters @@ -225,7 +225,7 @@ The table below shows this endpoint's support for ```json { - "Apply": ["cb80a13d-20d8-fb05-db3f-4ea0fe667b1b"] + "Apply": ["cb80a13d-20d8-fb05-db3f-4ea0fe667b1b"] } ``` @@ -252,9 +252,7 @@ $ curl \ "JobID": "example", "JobModifyIndex": 51, "Namespace": "default", - "Recommendations": [ - "cb80a13d-20d8-fb05-db3f-4ea0fe667b1b" - ], + "Recommendations": ["cb80a13d-20d8-fb05-db3f-4ea0fe667b1b"], "Warnings": "" } ] @@ -325,7 +323,7 @@ The table below shows this endpoint's support for "Resource": "MemoryMB", "Value": 512, "Meta": { - "nomad_policy_id": "c355d0ec-7aa1-2604-449d-4ec79c813d2c" + "nomad_policy_id": "c355d0ec-7aa1-2604-449d-4ec79c813d2c" }, "Stats": { "min": 2.6640625, diff --git a/website/pages/api-docs/regions.mdx b/website/content/api-docs/regions.mdx similarity index 100% rename from website/pages/api-docs/regions.mdx rename to website/content/api-docs/regions.mdx diff --git a/website/pages/api-docs/scaling-policies.mdx b/website/content/api-docs/scaling-policies.mdx similarity index 100% rename from website/pages/api-docs/scaling-policies.mdx rename to website/content/api-docs/scaling-policies.mdx diff --git a/website/pages/api-docs/search.mdx b/website/content/api-docs/search.mdx similarity index 100% rename from website/pages/api-docs/search.mdx rename to website/content/api-docs/search.mdx diff --git a/website/pages/api-docs/sentinel-policies.mdx b/website/content/api-docs/sentinel-policies.mdx similarity index 100% rename from website/pages/api-docs/sentinel-policies.mdx rename to website/content/api-docs/sentinel-policies.mdx diff --git a/website/pages/api-docs/status.mdx b/website/content/api-docs/status.mdx similarity index 100% rename from website/pages/api-docs/status.mdx rename to website/content/api-docs/status.mdx diff --git a/website/pages/api-docs/system.mdx b/website/content/api-docs/system.mdx similarity index 100% rename from website/pages/api-docs/system.mdx rename to website/content/api-docs/system.mdx diff --git a/website/pages/api-docs/ui.mdx b/website/content/api-docs/ui.mdx similarity index 100% rename from website/pages/api-docs/ui.mdx rename to website/content/api-docs/ui.mdx diff --git a/website/pages/api-docs/validate.mdx b/website/content/api-docs/validate.mdx similarity index 100% rename from website/pages/api-docs/validate.mdx rename to website/content/api-docs/validate.mdx diff --git a/website/pages/api-docs/volumes.mdx b/website/content/api-docs/volumes.mdx similarity index 99% rename from website/pages/api-docs/volumes.mdx rename to website/content/api-docs/volumes.mdx index 204ac135b..afc447ce2 100644 --- a/website/pages/api-docs/volumes.mdx +++ b/website/content/api-docs/volumes.mdx @@ -364,7 +364,7 @@ The table below shows this endpoint's support for path. - `node` `(string: )`- The node to detach the volume from. -This is specified as a query string parameter. + This is specified as a query string parameter. ### Sample Request diff --git a/website/pages/docs/autoscaling/agent.mdx b/website/content/docs/autoscaling/agent.mdx similarity index 100% rename from website/pages/docs/autoscaling/agent.mdx rename to website/content/docs/autoscaling/agent.mdx diff --git a/website/pages/docs/autoscaling/api.mdx b/website/content/docs/autoscaling/api.mdx similarity index 100% rename from website/pages/docs/autoscaling/api.mdx rename to website/content/docs/autoscaling/api.mdx diff --git a/website/pages/docs/autoscaling/cli.mdx b/website/content/docs/autoscaling/cli.mdx similarity index 100% rename from website/pages/docs/autoscaling/cli.mdx rename to website/content/docs/autoscaling/cli.mdx diff --git a/website/pages/docs/autoscaling/index.mdx b/website/content/docs/autoscaling/index.mdx similarity index 100% rename from website/pages/docs/autoscaling/index.mdx rename to website/content/docs/autoscaling/index.mdx diff --git a/website/pages/docs/autoscaling/internals/checks.mdx b/website/content/docs/autoscaling/internals/checks.mdx similarity index 100% rename from website/pages/docs/autoscaling/internals/checks.mdx rename to website/content/docs/autoscaling/internals/checks.mdx diff --git a/website/pages/docs/autoscaling/internals/index.mdx b/website/content/docs/autoscaling/internals/index.mdx similarity index 100% rename from website/pages/docs/autoscaling/internals/index.mdx rename to website/content/docs/autoscaling/internals/index.mdx diff --git a/website/pages/docs/autoscaling/plugins/apm.mdx b/website/content/docs/autoscaling/plugins/apm.mdx similarity index 100% rename from website/pages/docs/autoscaling/plugins/apm.mdx rename to website/content/docs/autoscaling/plugins/apm.mdx diff --git a/website/pages/docs/autoscaling/plugins/index.mdx b/website/content/docs/autoscaling/plugins/index.mdx similarity index 100% rename from website/pages/docs/autoscaling/plugins/index.mdx rename to website/content/docs/autoscaling/plugins/index.mdx diff --git a/website/pages/docs/autoscaling/plugins/strategy.mdx b/website/content/docs/autoscaling/plugins/strategy.mdx similarity index 100% rename from website/pages/docs/autoscaling/plugins/strategy.mdx rename to website/content/docs/autoscaling/plugins/strategy.mdx diff --git a/website/pages/docs/autoscaling/plugins/target.mdx b/website/content/docs/autoscaling/plugins/target.mdx similarity index 100% rename from website/pages/docs/autoscaling/plugins/target.mdx rename to website/content/docs/autoscaling/plugins/target.mdx index 31def6d50..7a44eb9eb 100644 --- a/website/pages/docs/autoscaling/plugins/target.mdx +++ b/website/content/docs/autoscaling/plugins/target.mdx @@ -12,6 +12,7 @@ target plugins support the `dry-run` policy config parameter which allows a poli to be evaluated, but will noop any suggested changes. Below is a list of plugins you can use with the Nomad Autoscaler: + - [Nomad Task Group][nomad_task_group_target] - [Dynamic Application Sizing Nomad Task][das_task_target] - [AWS AutoScaling Group][aws_asg_target] @@ -237,7 +238,6 @@ To use the Azure VMSS target plugin, the agent configuration needs to be populat with the appropriate target block. Authentication to the Azure API can be supplied in a number of ways. - #### Virtual Machine Identities When using [virtual machine identities][vm_identity] you will need to provide a diff --git a/website/pages/docs/autoscaling/policy.mdx b/website/content/docs/autoscaling/policy.mdx similarity index 100% rename from website/pages/docs/autoscaling/policy.mdx rename to website/content/docs/autoscaling/policy.mdx diff --git a/website/pages/docs/autoscaling/telemetry.mdx b/website/content/docs/autoscaling/telemetry.mdx similarity index 100% rename from website/pages/docs/autoscaling/telemetry.mdx rename to website/content/docs/autoscaling/telemetry.mdx diff --git a/website/pages/docs/commands/acl/bootstrap.mdx b/website/content/docs/commands/acl/bootstrap.mdx similarity index 100% rename from website/pages/docs/commands/acl/bootstrap.mdx rename to website/content/docs/commands/acl/bootstrap.mdx diff --git a/website/pages/docs/commands/acl/index.mdx b/website/content/docs/commands/acl/index.mdx similarity index 100% rename from website/pages/docs/commands/acl/index.mdx rename to website/content/docs/commands/acl/index.mdx diff --git a/website/pages/docs/commands/acl/policy-apply.mdx b/website/content/docs/commands/acl/policy-apply.mdx similarity index 100% rename from website/pages/docs/commands/acl/policy-apply.mdx rename to website/content/docs/commands/acl/policy-apply.mdx diff --git a/website/pages/docs/commands/acl/policy-delete.mdx b/website/content/docs/commands/acl/policy-delete.mdx similarity index 100% rename from website/pages/docs/commands/acl/policy-delete.mdx rename to website/content/docs/commands/acl/policy-delete.mdx diff --git a/website/pages/docs/commands/acl/policy-info.mdx b/website/content/docs/commands/acl/policy-info.mdx similarity index 100% rename from website/pages/docs/commands/acl/policy-info.mdx rename to website/content/docs/commands/acl/policy-info.mdx diff --git a/website/pages/docs/commands/acl/policy-list.mdx b/website/content/docs/commands/acl/policy-list.mdx similarity index 100% rename from website/pages/docs/commands/acl/policy-list.mdx rename to website/content/docs/commands/acl/policy-list.mdx diff --git a/website/pages/docs/commands/acl/token-create.mdx b/website/content/docs/commands/acl/token-create.mdx similarity index 100% rename from website/pages/docs/commands/acl/token-create.mdx rename to website/content/docs/commands/acl/token-create.mdx diff --git a/website/pages/docs/commands/acl/token-delete.mdx b/website/content/docs/commands/acl/token-delete.mdx similarity index 100% rename from website/pages/docs/commands/acl/token-delete.mdx rename to website/content/docs/commands/acl/token-delete.mdx diff --git a/website/pages/docs/commands/acl/token-info.mdx b/website/content/docs/commands/acl/token-info.mdx similarity index 100% rename from website/pages/docs/commands/acl/token-info.mdx rename to website/content/docs/commands/acl/token-info.mdx diff --git a/website/pages/docs/commands/acl/token-list.mdx b/website/content/docs/commands/acl/token-list.mdx similarity index 100% rename from website/pages/docs/commands/acl/token-list.mdx rename to website/content/docs/commands/acl/token-list.mdx diff --git a/website/pages/docs/commands/acl/token-self.mdx b/website/content/docs/commands/acl/token-self.mdx similarity index 100% rename from website/pages/docs/commands/acl/token-self.mdx rename to website/content/docs/commands/acl/token-self.mdx diff --git a/website/pages/docs/commands/acl/token-update.mdx b/website/content/docs/commands/acl/token-update.mdx similarity index 100% rename from website/pages/docs/commands/acl/token-update.mdx rename to website/content/docs/commands/acl/token-update.mdx diff --git a/website/pages/docs/commands/agent-info.mdx b/website/content/docs/commands/agent-info.mdx similarity index 100% rename from website/pages/docs/commands/agent-info.mdx rename to website/content/docs/commands/agent-info.mdx diff --git a/website/pages/docs/commands/agent.mdx b/website/content/docs/commands/agent.mdx similarity index 100% rename from website/pages/docs/commands/agent.mdx rename to website/content/docs/commands/agent.mdx diff --git a/website/pages/docs/commands/alloc/exec.mdx b/website/content/docs/commands/alloc/exec.mdx similarity index 100% rename from website/pages/docs/commands/alloc/exec.mdx rename to website/content/docs/commands/alloc/exec.mdx diff --git a/website/pages/docs/commands/alloc/fs.mdx b/website/content/docs/commands/alloc/fs.mdx similarity index 97% rename from website/pages/docs/commands/alloc/fs.mdx rename to website/content/docs/commands/alloc/fs.mdx index 2f07b0fe5..493bfe72c 100644 --- a/website/pages/docs/commands/alloc/fs.mdx +++ b/website/content/docs/commands/alloc/fs.mdx @@ -33,7 +33,7 @@ nomad alloc fs [options] This command accepts a single allocation ID (unless the `-job` flag is specified, in which case an allocation is chosen from the given job) and a -path. The path is optional and relative to the root of the [allocation working +path. The path is optional and relative to the root of the [allocation working directory]. When ACLs are enabled, this command requires a token with the `read-fs`, diff --git a/website/pages/docs/commands/alloc/index.mdx b/website/content/docs/commands/alloc/index.mdx similarity index 100% rename from website/pages/docs/commands/alloc/index.mdx rename to website/content/docs/commands/alloc/index.mdx diff --git a/website/pages/docs/commands/alloc/logs.mdx b/website/content/docs/commands/alloc/logs.mdx similarity index 100% rename from website/pages/docs/commands/alloc/logs.mdx rename to website/content/docs/commands/alloc/logs.mdx diff --git a/website/pages/docs/commands/alloc/restart.mdx b/website/content/docs/commands/alloc/restart.mdx similarity index 100% rename from website/pages/docs/commands/alloc/restart.mdx rename to website/content/docs/commands/alloc/restart.mdx diff --git a/website/pages/docs/commands/alloc/signal.mdx b/website/content/docs/commands/alloc/signal.mdx similarity index 100% rename from website/pages/docs/commands/alloc/signal.mdx rename to website/content/docs/commands/alloc/signal.mdx diff --git a/website/pages/docs/commands/alloc/status.mdx b/website/content/docs/commands/alloc/status.mdx similarity index 100% rename from website/pages/docs/commands/alloc/status.mdx rename to website/content/docs/commands/alloc/status.mdx diff --git a/website/pages/docs/commands/alloc/stop.mdx b/website/content/docs/commands/alloc/stop.mdx similarity index 100% rename from website/pages/docs/commands/alloc/stop.mdx rename to website/content/docs/commands/alloc/stop.mdx diff --git a/website/pages/docs/commands/deployment/fail.mdx b/website/content/docs/commands/deployment/fail.mdx similarity index 100% rename from website/pages/docs/commands/deployment/fail.mdx rename to website/content/docs/commands/deployment/fail.mdx diff --git a/website/pages/docs/commands/deployment/index.mdx b/website/content/docs/commands/deployment/index.mdx similarity index 100% rename from website/pages/docs/commands/deployment/index.mdx rename to website/content/docs/commands/deployment/index.mdx diff --git a/website/pages/docs/commands/deployment/list.mdx b/website/content/docs/commands/deployment/list.mdx similarity index 100% rename from website/pages/docs/commands/deployment/list.mdx rename to website/content/docs/commands/deployment/list.mdx diff --git a/website/pages/docs/commands/deployment/pause.mdx b/website/content/docs/commands/deployment/pause.mdx similarity index 100% rename from website/pages/docs/commands/deployment/pause.mdx rename to website/content/docs/commands/deployment/pause.mdx diff --git a/website/pages/docs/commands/deployment/promote.mdx b/website/content/docs/commands/deployment/promote.mdx similarity index 100% rename from website/pages/docs/commands/deployment/promote.mdx rename to website/content/docs/commands/deployment/promote.mdx diff --git a/website/pages/docs/commands/deployment/resume.mdx b/website/content/docs/commands/deployment/resume.mdx similarity index 100% rename from website/pages/docs/commands/deployment/resume.mdx rename to website/content/docs/commands/deployment/resume.mdx diff --git a/website/pages/docs/commands/deployment/status.mdx b/website/content/docs/commands/deployment/status.mdx similarity index 100% rename from website/pages/docs/commands/deployment/status.mdx rename to website/content/docs/commands/deployment/status.mdx diff --git a/website/pages/docs/commands/deployment/unblock.mdx b/website/content/docs/commands/deployment/unblock.mdx similarity index 100% rename from website/pages/docs/commands/deployment/unblock.mdx rename to website/content/docs/commands/deployment/unblock.mdx diff --git a/website/pages/docs/commands/eval-status.mdx b/website/content/docs/commands/eval-status.mdx similarity index 100% rename from website/pages/docs/commands/eval-status.mdx rename to website/content/docs/commands/eval-status.mdx diff --git a/website/pages/docs/commands/index.mdx b/website/content/docs/commands/index.mdx similarity index 100% rename from website/pages/docs/commands/index.mdx rename to website/content/docs/commands/index.mdx diff --git a/website/pages/docs/commands/job/deployments.mdx b/website/content/docs/commands/job/deployments.mdx similarity index 100% rename from website/pages/docs/commands/job/deployments.mdx rename to website/content/docs/commands/job/deployments.mdx diff --git a/website/pages/docs/commands/job/dispatch.mdx b/website/content/docs/commands/job/dispatch.mdx similarity index 100% rename from website/pages/docs/commands/job/dispatch.mdx rename to website/content/docs/commands/job/dispatch.mdx diff --git a/website/pages/docs/commands/job/eval.mdx b/website/content/docs/commands/job/eval.mdx similarity index 100% rename from website/pages/docs/commands/job/eval.mdx rename to website/content/docs/commands/job/eval.mdx diff --git a/website/pages/docs/commands/job/history.mdx b/website/content/docs/commands/job/history.mdx similarity index 100% rename from website/pages/docs/commands/job/history.mdx rename to website/content/docs/commands/job/history.mdx diff --git a/website/pages/docs/commands/job/index.mdx b/website/content/docs/commands/job/index.mdx similarity index 100% rename from website/pages/docs/commands/job/index.mdx rename to website/content/docs/commands/job/index.mdx diff --git a/website/pages/docs/commands/job/init.mdx b/website/content/docs/commands/job/init.mdx similarity index 100% rename from website/pages/docs/commands/job/init.mdx rename to website/content/docs/commands/job/init.mdx diff --git a/website/pages/docs/commands/job/inspect.mdx b/website/content/docs/commands/job/inspect.mdx similarity index 100% rename from website/pages/docs/commands/job/inspect.mdx rename to website/content/docs/commands/job/inspect.mdx diff --git a/website/pages/docs/commands/job/periodic-force.mdx b/website/content/docs/commands/job/periodic-force.mdx similarity index 100% rename from website/pages/docs/commands/job/periodic-force.mdx rename to website/content/docs/commands/job/periodic-force.mdx diff --git a/website/pages/docs/commands/job/plan.mdx b/website/content/docs/commands/job/plan.mdx similarity index 100% rename from website/pages/docs/commands/job/plan.mdx rename to website/content/docs/commands/job/plan.mdx diff --git a/website/pages/docs/commands/job/promote.mdx b/website/content/docs/commands/job/promote.mdx similarity index 100% rename from website/pages/docs/commands/job/promote.mdx rename to website/content/docs/commands/job/promote.mdx diff --git a/website/pages/docs/commands/job/revert.mdx b/website/content/docs/commands/job/revert.mdx similarity index 100% rename from website/pages/docs/commands/job/revert.mdx rename to website/content/docs/commands/job/revert.mdx diff --git a/website/pages/docs/commands/job/run.mdx b/website/content/docs/commands/job/run.mdx similarity index 100% rename from website/pages/docs/commands/job/run.mdx rename to website/content/docs/commands/job/run.mdx diff --git a/website/pages/docs/commands/job/scale.mdx b/website/content/docs/commands/job/scale.mdx similarity index 99% rename from website/pages/docs/commands/job/scale.mdx rename to website/content/docs/commands/job/scale.mdx index 352eb6b9b..1e2ecbe2c 100644 --- a/website/pages/docs/commands/job/scale.mdx +++ b/website/content/docs/commands/job/scale.mdx @@ -74,6 +74,7 @@ Evaluation ID: b754d6b3-8960-5652-60d8-d47df6eaed13 ``` Scale the job with ID "job1" and the task group "group1" to a count of 8: + ```shell-session $ nomad job scale job1 group1 8 ==> Monitoring evaluation "529cc88e" diff --git a/website/pages/docs/commands/job/scaling-events.mdx b/website/content/docs/commands/job/scaling-events.mdx similarity index 100% rename from website/pages/docs/commands/job/scaling-events.mdx rename to website/content/docs/commands/job/scaling-events.mdx diff --git a/website/pages/docs/commands/job/status.mdx b/website/content/docs/commands/job/status.mdx similarity index 100% rename from website/pages/docs/commands/job/status.mdx rename to website/content/docs/commands/job/status.mdx diff --git a/website/pages/docs/commands/job/stop.mdx b/website/content/docs/commands/job/stop.mdx similarity index 100% rename from website/pages/docs/commands/job/stop.mdx rename to website/content/docs/commands/job/stop.mdx diff --git a/website/pages/docs/commands/job/validate.mdx b/website/content/docs/commands/job/validate.mdx similarity index 100% rename from website/pages/docs/commands/job/validate.mdx rename to website/content/docs/commands/job/validate.mdx diff --git a/website/pages/docs/commands/license/get.mdx b/website/content/docs/commands/license/get.mdx similarity index 100% rename from website/pages/docs/commands/license/get.mdx rename to website/content/docs/commands/license/get.mdx diff --git a/website/pages/docs/commands/license/index.mdx b/website/content/docs/commands/license/index.mdx similarity index 100% rename from website/pages/docs/commands/license/index.mdx rename to website/content/docs/commands/license/index.mdx diff --git a/website/pages/docs/commands/license/put.mdx b/website/content/docs/commands/license/put.mdx similarity index 100% rename from website/pages/docs/commands/license/put.mdx rename to website/content/docs/commands/license/put.mdx diff --git a/website/pages/docs/commands/monitor.mdx b/website/content/docs/commands/monitor.mdx similarity index 100% rename from website/pages/docs/commands/monitor.mdx rename to website/content/docs/commands/monitor.mdx diff --git a/website/pages/docs/commands/namespace/apply.mdx b/website/content/docs/commands/namespace/apply.mdx similarity index 97% rename from website/pages/docs/commands/namespace/apply.mdx rename to website/content/docs/commands/namespace/apply.mdx index 47dee3ad6..04935a0a6 100644 --- a/website/pages/docs/commands/namespace/apply.mdx +++ b/website/content/docs/commands/namespace/apply.mdx @@ -11,7 +11,7 @@ description: | The `namespace apply` command is used create or update a namespace. ~> Namespaces are open source in Nomad 1.0. Namespaces were Enterprise-only - when introduced in Nomad 0.7. +when introduced in Nomad 0.7. ## Usage diff --git a/website/pages/docs/commands/namespace/delete.mdx b/website/content/docs/commands/namespace/delete.mdx similarity index 95% rename from website/pages/docs/commands/namespace/delete.mdx rename to website/content/docs/commands/namespace/delete.mdx index 7cdb00b39..3a409b877 100644 --- a/website/pages/docs/commands/namespace/delete.mdx +++ b/website/content/docs/commands/namespace/delete.mdx @@ -11,7 +11,7 @@ description: | The `namespace delete` command is used delete a namespace. ~> Namespaces are open source in Nomad 1.0. Namespaces were Enterprise-only - when introduced in Nomad 0.7. +when introduced in Nomad 0.7. ## Usage diff --git a/website/pages/docs/commands/namespace/index.mdx b/website/content/docs/commands/namespace/index.mdx similarity index 97% rename from website/pages/docs/commands/namespace/index.mdx rename to website/content/docs/commands/namespace/index.mdx index 1e0d5ebb1..b2e8a79a8 100644 --- a/website/pages/docs/commands/namespace/index.mdx +++ b/website/content/docs/commands/namespace/index.mdx @@ -11,7 +11,7 @@ description: | The `namespace` command is used to interact with namespaces. ~> Namespaces are open source in Nomad 1.0. Namespaces were Enterprise-only - when introduced in Nomad 0.7. +when introduced in Nomad 0.7. ## Usage diff --git a/website/pages/docs/commands/namespace/inspect.mdx b/website/content/docs/commands/namespace/inspect.mdx similarity index 96% rename from website/pages/docs/commands/namespace/inspect.mdx rename to website/content/docs/commands/namespace/inspect.mdx index 7b0e69943..ac1e93618 100644 --- a/website/pages/docs/commands/namespace/inspect.mdx +++ b/website/content/docs/commands/namespace/inspect.mdx @@ -13,7 +13,7 @@ The `namespace inspect` command is used to view raw information about a particul namespace. ~> Namespaces are open source in Nomad 1.0. Namespaces were Enterprise-only - when introduced in Nomad 0.7. +when introduced in Nomad 0.7. ## Usage diff --git a/website/pages/docs/commands/namespace/list.mdx b/website/content/docs/commands/namespace/list.mdx similarity index 97% rename from website/pages/docs/commands/namespace/list.mdx rename to website/content/docs/commands/namespace/list.mdx index 88f4ab6ad..7b07e9dde 100644 --- a/website/pages/docs/commands/namespace/list.mdx +++ b/website/content/docs/commands/namespace/list.mdx @@ -11,7 +11,7 @@ description: | The `namespace list` command is used list available namespaces. ~> Namespaces are open source in Nomad 1.0. Namespaces were Enterprise-only - when introduced in Nomad 0.7. +when introduced in Nomad 0.7. ## Usage diff --git a/website/pages/docs/commands/namespace/status.mdx b/website/content/docs/commands/namespace/status.mdx similarity index 96% rename from website/pages/docs/commands/namespace/status.mdx rename to website/content/docs/commands/namespace/status.mdx index 4019aba3e..298ca550a 100644 --- a/website/pages/docs/commands/namespace/status.mdx +++ b/website/content/docs/commands/namespace/status.mdx @@ -13,7 +13,7 @@ The `namespace status` command is used to view the status of a particular namespace. ~> Namespaces are open source in Nomad 1.0. Namespaces were Enterprise-only - when introduced in Nomad 0.7. +when introduced in Nomad 0.7. ## Usage diff --git a/website/pages/docs/commands/node/config.mdx b/website/content/docs/commands/node/config.mdx similarity index 100% rename from website/pages/docs/commands/node/config.mdx rename to website/content/docs/commands/node/config.mdx diff --git a/website/pages/docs/commands/node/drain.mdx b/website/content/docs/commands/node/drain.mdx similarity index 100% rename from website/pages/docs/commands/node/drain.mdx rename to website/content/docs/commands/node/drain.mdx diff --git a/website/pages/docs/commands/node/eligibility.mdx b/website/content/docs/commands/node/eligibility.mdx similarity index 100% rename from website/pages/docs/commands/node/eligibility.mdx rename to website/content/docs/commands/node/eligibility.mdx diff --git a/website/pages/docs/commands/node/index.mdx b/website/content/docs/commands/node/index.mdx similarity index 100% rename from website/pages/docs/commands/node/index.mdx rename to website/content/docs/commands/node/index.mdx diff --git a/website/pages/docs/commands/node/status.mdx b/website/content/docs/commands/node/status.mdx similarity index 100% rename from website/pages/docs/commands/node/status.mdx rename to website/content/docs/commands/node/status.mdx diff --git a/website/pages/docs/commands/operator/autopilot-get-config.mdx b/website/content/docs/commands/operator/autopilot-get-config.mdx similarity index 100% rename from website/pages/docs/commands/operator/autopilot-get-config.mdx rename to website/content/docs/commands/operator/autopilot-get-config.mdx diff --git a/website/pages/docs/commands/operator/autopilot-set-config.mdx b/website/content/docs/commands/operator/autopilot-set-config.mdx similarity index 100% rename from website/pages/docs/commands/operator/autopilot-set-config.mdx rename to website/content/docs/commands/operator/autopilot-set-config.mdx diff --git a/website/pages/docs/commands/operator/debug.mdx b/website/content/docs/commands/operator/debug.mdx similarity index 100% rename from website/pages/docs/commands/operator/debug.mdx rename to website/content/docs/commands/operator/debug.mdx diff --git a/website/pages/docs/commands/operator/index.mdx b/website/content/docs/commands/operator/index.mdx similarity index 100% rename from website/pages/docs/commands/operator/index.mdx rename to website/content/docs/commands/operator/index.mdx diff --git a/website/pages/docs/commands/operator/keygen.mdx b/website/content/docs/commands/operator/keygen.mdx similarity index 100% rename from website/pages/docs/commands/operator/keygen.mdx rename to website/content/docs/commands/operator/keygen.mdx diff --git a/website/pages/docs/commands/operator/keyring.mdx b/website/content/docs/commands/operator/keyring.mdx similarity index 100% rename from website/pages/docs/commands/operator/keyring.mdx rename to website/content/docs/commands/operator/keyring.mdx diff --git a/website/pages/docs/commands/operator/metrics.mdx b/website/content/docs/commands/operator/metrics.mdx similarity index 100% rename from website/pages/docs/commands/operator/metrics.mdx rename to website/content/docs/commands/operator/metrics.mdx diff --git a/website/pages/docs/commands/operator/raft-list-peers.mdx b/website/content/docs/commands/operator/raft-list-peers.mdx similarity index 100% rename from website/pages/docs/commands/operator/raft-list-peers.mdx rename to website/content/docs/commands/operator/raft-list-peers.mdx diff --git a/website/pages/docs/commands/operator/raft-remove-peer.mdx b/website/content/docs/commands/operator/raft-remove-peer.mdx similarity index 100% rename from website/pages/docs/commands/operator/raft-remove-peer.mdx rename to website/content/docs/commands/operator/raft-remove-peer.mdx diff --git a/website/pages/docs/commands/operator/snapshot-agent.mdx b/website/content/docs/commands/operator/snapshot-agent.mdx similarity index 100% rename from website/pages/docs/commands/operator/snapshot-agent.mdx rename to website/content/docs/commands/operator/snapshot-agent.mdx diff --git a/website/pages/docs/commands/operator/snapshot-inspect.mdx b/website/content/docs/commands/operator/snapshot-inspect.mdx similarity index 100% rename from website/pages/docs/commands/operator/snapshot-inspect.mdx rename to website/content/docs/commands/operator/snapshot-inspect.mdx diff --git a/website/pages/docs/commands/operator/snapshot-restore.mdx b/website/content/docs/commands/operator/snapshot-restore.mdx similarity index 100% rename from website/pages/docs/commands/operator/snapshot-restore.mdx rename to website/content/docs/commands/operator/snapshot-restore.mdx diff --git a/website/pages/docs/commands/operator/snapshot-save.mdx b/website/content/docs/commands/operator/snapshot-save.mdx similarity index 100% rename from website/pages/docs/commands/operator/snapshot-save.mdx rename to website/content/docs/commands/operator/snapshot-save.mdx diff --git a/website/pages/docs/commands/plugin/index.mdx b/website/content/docs/commands/plugin/index.mdx similarity index 100% rename from website/pages/docs/commands/plugin/index.mdx rename to website/content/docs/commands/plugin/index.mdx diff --git a/website/pages/docs/commands/plugin/status.mdx b/website/content/docs/commands/plugin/status.mdx similarity index 100% rename from website/pages/docs/commands/plugin/status.mdx rename to website/content/docs/commands/plugin/status.mdx diff --git a/website/pages/docs/commands/quota/apply.mdx b/website/content/docs/commands/quota/apply.mdx similarity index 100% rename from website/pages/docs/commands/quota/apply.mdx rename to website/content/docs/commands/quota/apply.mdx diff --git a/website/pages/docs/commands/quota/delete.mdx b/website/content/docs/commands/quota/delete.mdx similarity index 100% rename from website/pages/docs/commands/quota/delete.mdx rename to website/content/docs/commands/quota/delete.mdx diff --git a/website/pages/docs/commands/quota/index.mdx b/website/content/docs/commands/quota/index.mdx similarity index 100% rename from website/pages/docs/commands/quota/index.mdx rename to website/content/docs/commands/quota/index.mdx diff --git a/website/pages/docs/commands/quota/init.mdx b/website/content/docs/commands/quota/init.mdx similarity index 100% rename from website/pages/docs/commands/quota/init.mdx rename to website/content/docs/commands/quota/init.mdx diff --git a/website/pages/docs/commands/quota/inspect.mdx b/website/content/docs/commands/quota/inspect.mdx similarity index 100% rename from website/pages/docs/commands/quota/inspect.mdx rename to website/content/docs/commands/quota/inspect.mdx diff --git a/website/pages/docs/commands/quota/list.mdx b/website/content/docs/commands/quota/list.mdx similarity index 100% rename from website/pages/docs/commands/quota/list.mdx rename to website/content/docs/commands/quota/list.mdx diff --git a/website/pages/docs/commands/quota/status.mdx b/website/content/docs/commands/quota/status.mdx similarity index 100% rename from website/pages/docs/commands/quota/status.mdx rename to website/content/docs/commands/quota/status.mdx diff --git a/website/pages/docs/commands/recommendation/apply.mdx b/website/content/docs/commands/recommendation/apply.mdx similarity index 100% rename from website/pages/docs/commands/recommendation/apply.mdx rename to website/content/docs/commands/recommendation/apply.mdx diff --git a/website/pages/docs/commands/recommendation/dismiss.mdx b/website/content/docs/commands/recommendation/dismiss.mdx similarity index 100% rename from website/pages/docs/commands/recommendation/dismiss.mdx rename to website/content/docs/commands/recommendation/dismiss.mdx diff --git a/website/pages/docs/commands/recommendation/index.mdx b/website/content/docs/commands/recommendation/index.mdx similarity index 100% rename from website/pages/docs/commands/recommendation/index.mdx rename to website/content/docs/commands/recommendation/index.mdx diff --git a/website/pages/docs/commands/recommendation/info.mdx b/website/content/docs/commands/recommendation/info.mdx similarity index 100% rename from website/pages/docs/commands/recommendation/info.mdx rename to website/content/docs/commands/recommendation/info.mdx diff --git a/website/pages/docs/commands/recommendation/list.mdx b/website/content/docs/commands/recommendation/list.mdx similarity index 100% rename from website/pages/docs/commands/recommendation/list.mdx rename to website/content/docs/commands/recommendation/list.mdx diff --git a/website/pages/docs/commands/scaling/index.mdx b/website/content/docs/commands/scaling/index.mdx similarity index 100% rename from website/pages/docs/commands/scaling/index.mdx rename to website/content/docs/commands/scaling/index.mdx diff --git a/website/pages/docs/commands/scaling/policy-info.mdx b/website/content/docs/commands/scaling/policy-info.mdx similarity index 100% rename from website/pages/docs/commands/scaling/policy-info.mdx rename to website/content/docs/commands/scaling/policy-info.mdx diff --git a/website/pages/docs/commands/scaling/policy-list.mdx b/website/content/docs/commands/scaling/policy-list.mdx similarity index 100% rename from website/pages/docs/commands/scaling/policy-list.mdx rename to website/content/docs/commands/scaling/policy-list.mdx diff --git a/website/pages/docs/commands/sentinel/apply.mdx b/website/content/docs/commands/sentinel/apply.mdx similarity index 100% rename from website/pages/docs/commands/sentinel/apply.mdx rename to website/content/docs/commands/sentinel/apply.mdx diff --git a/website/pages/docs/commands/sentinel/delete.mdx b/website/content/docs/commands/sentinel/delete.mdx similarity index 100% rename from website/pages/docs/commands/sentinel/delete.mdx rename to website/content/docs/commands/sentinel/delete.mdx diff --git a/website/pages/docs/commands/sentinel/index.mdx b/website/content/docs/commands/sentinel/index.mdx similarity index 100% rename from website/pages/docs/commands/sentinel/index.mdx rename to website/content/docs/commands/sentinel/index.mdx diff --git a/website/pages/docs/commands/sentinel/list.mdx b/website/content/docs/commands/sentinel/list.mdx similarity index 100% rename from website/pages/docs/commands/sentinel/list.mdx rename to website/content/docs/commands/sentinel/list.mdx diff --git a/website/pages/docs/commands/sentinel/read.mdx b/website/content/docs/commands/sentinel/read.mdx similarity index 100% rename from website/pages/docs/commands/sentinel/read.mdx rename to website/content/docs/commands/sentinel/read.mdx diff --git a/website/pages/docs/commands/server/force-leave.mdx b/website/content/docs/commands/server/force-leave.mdx similarity index 100% rename from website/pages/docs/commands/server/force-leave.mdx rename to website/content/docs/commands/server/force-leave.mdx diff --git a/website/pages/docs/commands/server/index.mdx b/website/content/docs/commands/server/index.mdx similarity index 100% rename from website/pages/docs/commands/server/index.mdx rename to website/content/docs/commands/server/index.mdx diff --git a/website/pages/docs/commands/server/join.mdx b/website/content/docs/commands/server/join.mdx similarity index 100% rename from website/pages/docs/commands/server/join.mdx rename to website/content/docs/commands/server/join.mdx diff --git a/website/pages/docs/commands/server/members.mdx b/website/content/docs/commands/server/members.mdx similarity index 100% rename from website/pages/docs/commands/server/members.mdx rename to website/content/docs/commands/server/members.mdx diff --git a/website/pages/docs/commands/status.mdx b/website/content/docs/commands/status.mdx similarity index 100% rename from website/pages/docs/commands/status.mdx rename to website/content/docs/commands/status.mdx diff --git a/website/pages/docs/commands/system/gc.mdx b/website/content/docs/commands/system/gc.mdx similarity index 100% rename from website/pages/docs/commands/system/gc.mdx rename to website/content/docs/commands/system/gc.mdx diff --git a/website/pages/docs/commands/system/index.mdx b/website/content/docs/commands/system/index.mdx similarity index 100% rename from website/pages/docs/commands/system/index.mdx rename to website/content/docs/commands/system/index.mdx diff --git a/website/pages/docs/commands/system/reconcile-summaries.mdx b/website/content/docs/commands/system/reconcile-summaries.mdx similarity index 100% rename from website/pages/docs/commands/system/reconcile-summaries.mdx rename to website/content/docs/commands/system/reconcile-summaries.mdx diff --git a/website/pages/docs/commands/ui.mdx b/website/content/docs/commands/ui.mdx similarity index 100% rename from website/pages/docs/commands/ui.mdx rename to website/content/docs/commands/ui.mdx diff --git a/website/pages/docs/commands/version.mdx b/website/content/docs/commands/version.mdx similarity index 100% rename from website/pages/docs/commands/version.mdx rename to website/content/docs/commands/version.mdx diff --git a/website/pages/docs/commands/volume/deregister.mdx b/website/content/docs/commands/volume/deregister.mdx similarity index 100% rename from website/pages/docs/commands/volume/deregister.mdx rename to website/content/docs/commands/volume/deregister.mdx diff --git a/website/pages/docs/commands/volume/detach.mdx b/website/content/docs/commands/volume/detach.mdx similarity index 100% rename from website/pages/docs/commands/volume/detach.mdx rename to website/content/docs/commands/volume/detach.mdx diff --git a/website/pages/docs/commands/volume/index.mdx b/website/content/docs/commands/volume/index.mdx similarity index 100% rename from website/pages/docs/commands/volume/index.mdx rename to website/content/docs/commands/volume/index.mdx diff --git a/website/pages/docs/commands/volume/register.mdx b/website/content/docs/commands/volume/register.mdx similarity index 100% rename from website/pages/docs/commands/volume/register.mdx rename to website/content/docs/commands/volume/register.mdx diff --git a/website/pages/docs/commands/volume/status.mdx b/website/content/docs/commands/volume/status.mdx similarity index 100% rename from website/pages/docs/commands/volume/status.mdx rename to website/content/docs/commands/volume/status.mdx diff --git a/website/pages/docs/configuration/acl.mdx b/website/content/docs/configuration/acl.mdx similarity index 100% rename from website/pages/docs/configuration/acl.mdx rename to website/content/docs/configuration/acl.mdx diff --git a/website/pages/docs/configuration/audit.mdx b/website/content/docs/configuration/audit.mdx similarity index 100% rename from website/pages/docs/configuration/audit.mdx rename to website/content/docs/configuration/audit.mdx diff --git a/website/pages/docs/configuration/autopilot.mdx b/website/content/docs/configuration/autopilot.mdx similarity index 100% rename from website/pages/docs/configuration/autopilot.mdx rename to website/content/docs/configuration/autopilot.mdx diff --git a/website/pages/docs/configuration/client.mdx b/website/content/docs/configuration/client.mdx similarity index 100% rename from website/pages/docs/configuration/client.mdx rename to website/content/docs/configuration/client.mdx diff --git a/website/pages/docs/configuration/consul.mdx b/website/content/docs/configuration/consul.mdx similarity index 100% rename from website/pages/docs/configuration/consul.mdx rename to website/content/docs/configuration/consul.mdx diff --git a/website/pages/docs/configuration/index.mdx b/website/content/docs/configuration/index.mdx similarity index 99% rename from website/pages/docs/configuration/index.mdx rename to website/content/docs/configuration/index.mdx index 9c3644bfb..1ebb96fae 100644 --- a/website/pages/docs/configuration/index.mdx +++ b/website/content/docs/configuration/index.mdx @@ -161,7 +161,7 @@ testing. provide an anonymous signature for de-duplication with the update check. - `disable_update_check` `(bool: false)` - Specifies if Nomad should not check - for updates and security bulletins. *This defaults to `true` in Nomad Enterprise.* + for updates and security bulletins. _This defaults to `true` in Nomad Enterprise._ - `enable_debug` `(bool: false)` - Specifies if the debugging HTTP endpoints should be enabled. These endpoints can be used with profiling tools to dump diff --git a/website/pages/docs/configuration/plugin.mdx b/website/content/docs/configuration/plugin.mdx similarity index 100% rename from website/pages/docs/configuration/plugin.mdx rename to website/content/docs/configuration/plugin.mdx diff --git a/website/pages/docs/configuration/sentinel.mdx b/website/content/docs/configuration/sentinel.mdx similarity index 100% rename from website/pages/docs/configuration/sentinel.mdx rename to website/content/docs/configuration/sentinel.mdx diff --git a/website/pages/docs/configuration/server.mdx b/website/content/docs/configuration/server.mdx similarity index 100% rename from website/pages/docs/configuration/server.mdx rename to website/content/docs/configuration/server.mdx diff --git a/website/pages/docs/configuration/server_join.mdx b/website/content/docs/configuration/server_join.mdx similarity index 100% rename from website/pages/docs/configuration/server_join.mdx rename to website/content/docs/configuration/server_join.mdx diff --git a/website/pages/docs/configuration/telemetry.mdx b/website/content/docs/configuration/telemetry.mdx similarity index 100% rename from website/pages/docs/configuration/telemetry.mdx rename to website/content/docs/configuration/telemetry.mdx diff --git a/website/pages/docs/configuration/tls.mdx b/website/content/docs/configuration/tls.mdx similarity index 100% rename from website/pages/docs/configuration/tls.mdx rename to website/content/docs/configuration/tls.mdx diff --git a/website/pages/docs/configuration/vault.mdx b/website/content/docs/configuration/vault.mdx similarity index 100% rename from website/pages/docs/configuration/vault.mdx rename to website/content/docs/configuration/vault.mdx diff --git a/website/pages/docs/devices/community.mdx b/website/content/docs/devices/community.mdx similarity index 100% rename from website/pages/docs/devices/community.mdx rename to website/content/docs/devices/community.mdx diff --git a/website/pages/docs/devices/index.mdx b/website/content/docs/devices/index.mdx similarity index 100% rename from website/pages/docs/devices/index.mdx rename to website/content/docs/devices/index.mdx diff --git a/website/pages/docs/devices/nvidia.mdx b/website/content/docs/devices/nvidia.mdx similarity index 100% rename from website/pages/docs/devices/nvidia.mdx rename to website/content/docs/devices/nvidia.mdx diff --git a/website/pages/docs/drivers/docker.mdx b/website/content/docs/drivers/docker.mdx similarity index 100% rename from website/pages/docs/drivers/docker.mdx rename to website/content/docs/drivers/docker.mdx diff --git a/website/pages/docs/drivers/exec.mdx b/website/content/docs/drivers/exec.mdx similarity index 100% rename from website/pages/docs/drivers/exec.mdx rename to website/content/docs/drivers/exec.mdx diff --git a/website/pages/docs/drivers/external/containerd.mdx b/website/content/docs/drivers/external/containerd.mdx similarity index 100% rename from website/pages/docs/drivers/external/containerd.mdx rename to website/content/docs/drivers/external/containerd.mdx diff --git a/website/pages/docs/drivers/external/firecracker-task-driver.mdx b/website/content/docs/drivers/external/firecracker-task-driver.mdx similarity index 100% rename from website/pages/docs/drivers/external/firecracker-task-driver.mdx rename to website/content/docs/drivers/external/firecracker-task-driver.mdx diff --git a/website/pages/docs/drivers/external/iis.mdx b/website/content/docs/drivers/external/iis.mdx similarity index 100% rename from website/pages/docs/drivers/external/iis.mdx rename to website/content/docs/drivers/external/iis.mdx diff --git a/website/pages/docs/drivers/external/index.mdx b/website/content/docs/drivers/external/index.mdx similarity index 100% rename from website/pages/docs/drivers/external/index.mdx rename to website/content/docs/drivers/external/index.mdx diff --git a/website/pages/docs/drivers/external/jail-task-driver.mdx b/website/content/docs/drivers/external/jail-task-driver.mdx similarity index 100% rename from website/pages/docs/drivers/external/jail-task-driver.mdx rename to website/content/docs/drivers/external/jail-task-driver.mdx diff --git a/website/pages/docs/drivers/external/lxc.mdx b/website/content/docs/drivers/external/lxc.mdx similarity index 100% rename from website/pages/docs/drivers/external/lxc.mdx rename to website/content/docs/drivers/external/lxc.mdx diff --git a/website/pages/docs/drivers/external/nspawn.mdx b/website/content/docs/drivers/external/nspawn.mdx similarity index 100% rename from website/pages/docs/drivers/external/nspawn.mdx rename to website/content/docs/drivers/external/nspawn.mdx diff --git a/website/pages/docs/drivers/external/pot.mdx b/website/content/docs/drivers/external/pot.mdx similarity index 100% rename from website/pages/docs/drivers/external/pot.mdx rename to website/content/docs/drivers/external/pot.mdx diff --git a/website/pages/docs/drivers/external/rkt.mdx b/website/content/docs/drivers/external/rkt.mdx similarity index 100% rename from website/pages/docs/drivers/external/rkt.mdx rename to website/content/docs/drivers/external/rkt.mdx diff --git a/website/pages/docs/drivers/external/singularity.mdx b/website/content/docs/drivers/external/singularity.mdx similarity index 100% rename from website/pages/docs/drivers/external/singularity.mdx rename to website/content/docs/drivers/external/singularity.mdx diff --git a/website/pages/docs/drivers/index.mdx b/website/content/docs/drivers/index.mdx similarity index 100% rename from website/pages/docs/drivers/index.mdx rename to website/content/docs/drivers/index.mdx diff --git a/website/pages/docs/drivers/java.mdx b/website/content/docs/drivers/java.mdx similarity index 100% rename from website/pages/docs/drivers/java.mdx rename to website/content/docs/drivers/java.mdx diff --git a/website/pages/docs/drivers/podman.mdx b/website/content/docs/drivers/podman.mdx similarity index 100% rename from website/pages/docs/drivers/podman.mdx rename to website/content/docs/drivers/podman.mdx diff --git a/website/pages/docs/drivers/qemu.mdx b/website/content/docs/drivers/qemu.mdx similarity index 100% rename from website/pages/docs/drivers/qemu.mdx rename to website/content/docs/drivers/qemu.mdx diff --git a/website/pages/docs/drivers/raw_exec.mdx b/website/content/docs/drivers/raw_exec.mdx similarity index 100% rename from website/pages/docs/drivers/raw_exec.mdx rename to website/content/docs/drivers/raw_exec.mdx diff --git a/website/pages/docs/ecosystem.mdx b/website/content/docs/ecosystem.mdx similarity index 100% rename from website/pages/docs/ecosystem.mdx rename to website/content/docs/ecosystem.mdx diff --git a/website/pages/docs/enterprise.mdx b/website/content/docs/enterprise.mdx similarity index 99% rename from website/pages/docs/enterprise.mdx rename to website/content/docs/enterprise.mdx index e1260ceda..714bb331e 100644 --- a/website/pages/docs/enterprise.mdx +++ b/website/content/docs/enterprise.mdx @@ -107,7 +107,6 @@ vertical [scaling policies], a new API and UI for reviewing recommended job changes, and a collection of Nomad Autoscaler plugins informed by best-practice statistical measures. - ## Try Nomad Enterprise Click [here](https://www.hashicorp.com/go/nomad-enterprise) to set up a demo or diff --git a/website/pages/docs/faq.mdx b/website/content/docs/faq.mdx similarity index 100% rename from website/pages/docs/faq.mdx rename to website/content/docs/faq.mdx diff --git a/website/pages/docs/index.mdx b/website/content/docs/index.mdx similarity index 100% rename from website/pages/docs/index.mdx rename to website/content/docs/index.mdx diff --git a/website/pages/docs/install/index.mdx b/website/content/docs/install/index.mdx similarity index 99% rename from website/pages/docs/install/index.mdx rename to website/content/docs/install/index.mdx index 3133ed634..770e1d1da 100644 --- a/website/pages/docs/install/index.mdx +++ b/website/content/docs/install/index.mdx @@ -16,6 +16,7 @@ operating systems. You can also [build Nomad from source](#from-source). + You can download a [precompiled binary](/downloads) and run it on your machine locally. You can also verify the binary using the available SHA-256 sums. After downloading Nomad, unzip the package. Make sure @@ -51,12 +52,14 @@ Nomad binary's location to that list and then launch a new console window. + HashiCorp officially maintains and signs packages for the following Linux distributions. + Add the HashiCorp [GPG key][gpg-key]. ```shell-session @@ -78,6 +81,7 @@ $ sudo apt-get update && sudo apt-get install nomad + Install `yum-config-manager` to manage your repositories. ```shell-session @@ -99,6 +103,7 @@ $ sudo yum -y install nomad + Install `dnf config-manager` to manage your repositories. ```shell-session @@ -120,6 +125,7 @@ $ sudo dnf -y install nomad + Install `yum-config-manager` to manage your repositories. ```shell-session @@ -141,6 +147,7 @@ $ sudo yum -y install nomad + -> **TIP:** Now that you have added the HashiCorp repository, you can install [Consul](https://learn.hashicorp.com/consul) and [Vault](https://learn.hashicorp.com/vault) with the same command. @@ -148,6 +155,7 @@ $ sudo yum -y install nomad + [Homebrew](https://brew.sh) is a free and open-source package management system for macOS. Install the [Nomad formula](https://formulae.brew.sh/formula/nomad) from the terminal. @@ -167,6 +175,7 @@ GitHub issue has workarounds for this issue. + [Chocolatey](https://chocolatey.org/) is a free and open-source package management system for Windows. Install the [Nomad package](https://chocolatey.org/packages/nomad) from the command-line. @@ -182,6 +191,7 @@ installation. + --- ## Verify the Installation diff --git a/website/pages/docs/install/production/index.mdx b/website/content/docs/install/production/index.mdx similarity index 100% rename from website/pages/docs/install/production/index.mdx rename to website/content/docs/install/production/index.mdx diff --git a/website/pages/docs/install/production/requirements.mdx b/website/content/docs/install/production/requirements.mdx similarity index 100% rename from website/pages/docs/install/production/requirements.mdx rename to website/content/docs/install/production/requirements.mdx diff --git a/website/pages/docs/install/quickstart.mdx b/website/content/docs/install/quickstart.mdx similarity index 100% rename from website/pages/docs/install/quickstart.mdx rename to website/content/docs/install/quickstart.mdx diff --git a/website/pages/docs/install/windows-service.mdx b/website/content/docs/install/windows-service.mdx similarity index 100% rename from website/pages/docs/install/windows-service.mdx rename to website/content/docs/install/windows-service.mdx diff --git a/website/pages/docs/integrations/consul-connect.mdx b/website/content/docs/integrations/consul-connect.mdx similarity index 100% rename from website/pages/docs/integrations/consul-connect.mdx rename to website/content/docs/integrations/consul-connect.mdx diff --git a/website/pages/docs/integrations/consul-integration.mdx b/website/content/docs/integrations/consul-integration.mdx similarity index 100% rename from website/pages/docs/integrations/consul-integration.mdx rename to website/content/docs/integrations/consul-integration.mdx diff --git a/website/pages/docs/integrations/index.mdx b/website/content/docs/integrations/index.mdx similarity index 100% rename from website/pages/docs/integrations/index.mdx rename to website/content/docs/integrations/index.mdx diff --git a/website/pages/docs/integrations/vault-integration.mdx b/website/content/docs/integrations/vault-integration.mdx similarity index 100% rename from website/pages/docs/integrations/vault-integration.mdx rename to website/content/docs/integrations/vault-integration.mdx diff --git a/website/pages/docs/internals/architecture.mdx b/website/content/docs/internals/architecture.mdx similarity index 100% rename from website/pages/docs/internals/architecture.mdx rename to website/content/docs/internals/architecture.mdx diff --git a/website/pages/docs/internals/consensus.mdx b/website/content/docs/internals/consensus.mdx similarity index 100% rename from website/pages/docs/internals/consensus.mdx rename to website/content/docs/internals/consensus.mdx diff --git a/website/pages/docs/internals/filesystem.mdx b/website/content/docs/internals/filesystem.mdx similarity index 94% rename from website/pages/docs/internals/filesystem.mdx rename to website/content/docs/internals/filesystem.mdx index d9975802b..c4d3aeea6 100644 --- a/website/pages/docs/internals/filesystem.mdx +++ b/website/content/docs/internals/filesystem.mdx @@ -38,7 +38,7 @@ allocation directory like the one below. └── tmp ``` -- **alloc/**: This directory is shared across all tasks in an allocation and +- **alloc/**: This directory is shared across all tasks in an allocation and can be used to store data that needs to be used by multiple tasks, such as a log shipper. This is the directory that's provided to the task as the `NOMAD_ALLOC_DIR`. Note that this `alloc/` directory is not the same as the @@ -66,9 +66,9 @@ allocation directory like the one below. directory". This directory is private to the task. - **«taskname»/secrets/**: This directory is the location provided to the task as - `NOMAD_SECRETS_DIR`. The contents of files in this directory cannot be read - the the `nomad alloc fs` command. It can be used to store secret data that - should not be visible outside the task. + `NOMAD_SECRETS_DIR`. The contents of files in this directory cannot be read + the the `nomad alloc fs` command. It can be used to store secret data that + should not be visible outside the task. - **«taskname»/tmp/**: A temporary directory used as scratch space by task drivers. @@ -232,7 +232,6 @@ EOT } ``` - ### `chroot` isolation Task drivers like `exec` or `java` (on Linux) use `chroot` isolation, where @@ -288,8 +287,7 @@ contents], in addition to the `NOMAD_ALLOC_DIR`, `NOMAD_TASK_DIR`, and └── usr ``` -Likewise, the root directory of the task is now available in the `nomad alloc -fs` command output: +Likewise, the root directory of the task is now available in the `nomad alloc fs` command output: ```shell-session $ nomad alloc fs eebd13a7 @@ -341,7 +339,6 @@ user that's running Nomad can. You can see an example of `none` isolation by running the following minimal `raw_exec` job on Linux or Unix. - ```hcl job "example" { datacenters = ["dc1"] @@ -413,15 +410,15 @@ The other contents of the allocation working directory depend on what features the job specification uses. The allocation working directory is populated by other features in a specific order: -* The allocation working directory is created. -* The ephemeral disk data is [migrated] from any previous allocation. -* [CSI volumes] are staged. -* Then, for each task: - * Task working directories are created. - * [Dispatch payloads] are written. - * [Artifacts] are downloaded. - * [Templates] are rendered. - * The task is started by the task driver, which includes all bind mounts and +- The allocation working directory is created. +- The ephemeral disk data is [migrated] from any previous allocation. +- [CSI volumes] are staged. +- Then, for each task: + - Task working directories are created. + - [Dispatch payloads] are written. + - [Artifacts] are downloaded. + - [Templates] are rendered. + - The task is started by the task driver, which includes all bind mounts and [volume mounts]. Dispatch payloads, artifacts, and templates are written to the task working @@ -449,11 +446,10 @@ and passes it to the task driver to execute. Because the task driver mounts the volume, it is not possible to have `artifact`, `template`, or `dispatch_payload` blocks write to a volume. - -[Artifacts]: /docs/job-specification/artifact -[CSI volumes]: /docs/internals/plugins/csi -[Dispatch payloads]: /docs/job-specification/dispatch_payload -[Templates]: /docs/job-specification/template +[artifacts]: /docs/job-specification/artifact +[csi volumes]: /docs/internals/plugins/csi +[dispatch payloads]: /docs/job-specification/dispatch_payload +[templates]: /docs/job-specification/template [`data_dir`]: /docs/configuration#data_dir [`ephemeral_disk`]: /docs/job-specification/ephemeral_disk [artifact]: /docs/job-specification/artifact diff --git a/website/pages/docs/internals/gossip.mdx b/website/content/docs/internals/gossip.mdx similarity index 100% rename from website/pages/docs/internals/gossip.mdx rename to website/content/docs/internals/gossip.mdx diff --git a/website/pages/docs/internals/index.mdx b/website/content/docs/internals/index.mdx similarity index 100% rename from website/pages/docs/internals/index.mdx rename to website/content/docs/internals/index.mdx diff --git a/website/pages/docs/internals/plugins/base.mdx b/website/content/docs/internals/plugins/base.mdx similarity index 100% rename from website/pages/docs/internals/plugins/base.mdx rename to website/content/docs/internals/plugins/base.mdx diff --git a/website/pages/docs/internals/plugins/csi.mdx b/website/content/docs/internals/plugins/csi.mdx similarity index 100% rename from website/pages/docs/internals/plugins/csi.mdx rename to website/content/docs/internals/plugins/csi.mdx diff --git a/website/pages/docs/internals/plugins/devices.mdx b/website/content/docs/internals/plugins/devices.mdx similarity index 100% rename from website/pages/docs/internals/plugins/devices.mdx rename to website/content/docs/internals/plugins/devices.mdx diff --git a/website/pages/docs/internals/plugins/index.mdx b/website/content/docs/internals/plugins/index.mdx similarity index 100% rename from website/pages/docs/internals/plugins/index.mdx rename to website/content/docs/internals/plugins/index.mdx diff --git a/website/pages/docs/internals/plugins/task-drivers.mdx b/website/content/docs/internals/plugins/task-drivers.mdx similarity index 100% rename from website/pages/docs/internals/plugins/task-drivers.mdx rename to website/content/docs/internals/plugins/task-drivers.mdx diff --git a/website/pages/docs/internals/scheduling/index.mdx b/website/content/docs/internals/scheduling/index.mdx similarity index 100% rename from website/pages/docs/internals/scheduling/index.mdx rename to website/content/docs/internals/scheduling/index.mdx diff --git a/website/pages/docs/internals/scheduling/preemption.mdx b/website/content/docs/internals/scheduling/preemption.mdx similarity index 100% rename from website/pages/docs/internals/scheduling/preemption.mdx rename to website/content/docs/internals/scheduling/preemption.mdx diff --git a/website/pages/docs/internals/scheduling/scheduling.mdx b/website/content/docs/internals/scheduling/scheduling.mdx similarity index 100% rename from website/pages/docs/internals/scheduling/scheduling.mdx rename to website/content/docs/internals/scheduling/scheduling.mdx diff --git a/website/pages/docs/internals/security.mdx b/website/content/docs/internals/security.mdx similarity index 99% rename from website/pages/docs/internals/security.mdx rename to website/content/docs/internals/security.mdx index 4f9459db3..c571783c0 100644 --- a/website/pages/docs/internals/security.mdx +++ b/website/content/docs/internals/security.mdx @@ -39,9 +39,10 @@ but the general mechanisms for a secure Nomad deployment revolve around: tokens. - **[Namespaces](https://learn.hashicorp.com/tutorials/nomad/namespaces)** + - Access to read and write to a namespace can be - controlled to allow for granular access to job information managed within a - multi-tenant cluster. + controlled to allow for granular access to job information managed within a + multi-tenant cluster. - **[Sentinel Policies](https://learn.hashicorp.com/tutorials/nomad/sentinel)** (**Enterprise Only**) - Sentinel policies allow for granular control over diff --git a/website/pages/docs/job-specification/affinity.mdx b/website/content/docs/job-specification/affinity.mdx similarity index 100% rename from website/pages/docs/job-specification/affinity.mdx rename to website/content/docs/job-specification/affinity.mdx diff --git a/website/pages/docs/job-specification/artifact.mdx b/website/content/docs/job-specification/artifact.mdx similarity index 99% rename from website/pages/docs/job-specification/artifact.mdx rename to website/content/docs/job-specification/artifact.mdx index 29909f195..e3a03ae9a 100644 --- a/website/pages/docs/job-specification/artifact.mdx +++ b/website/content/docs/job-specification/artifact.mdx @@ -239,4 +239,4 @@ artifact { [s3-region-endpoints]: http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region 'Amazon S3 Region Endpoints' [iam-instance-profiles]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use_switch-role-ec2_instance-profiles.html 'EC2 IAM instance profiles' [task's working directory]: /docs/runtime/environment#task-directories 'Task Directories' -[Filesystem internals]: /docs/internals/filesystem#templates-artifacts-and-dispatch-payloads +[filesystem internals]: /docs/internals/filesystem#templates-artifacts-and-dispatch-payloads diff --git a/website/pages/docs/job-specification/check_restart.mdx b/website/content/docs/job-specification/check_restart.mdx similarity index 97% rename from website/pages/docs/job-specification/check_restart.mdx rename to website/content/docs/job-specification/check_restart.mdx index cce9957b9..8617b664a 100644 --- a/website/pages/docs/job-specification/check_restart.mdx +++ b/website/content/docs/job-specification/check_restart.mdx @@ -17,8 +17,8 @@ description: |- /> ~> The `check_restart` stanza in Nomad is only supported for task networks, - *not* group networks. Please follow [#9176][gh-9176] to be notified when - this is fixed. +_not_ group networks. Please follow [#9176][gh-9176] to be notified when +this is fixed. As of Nomad 0.7 the `check_restart` stanza instructs Nomad when to restart tasks with unhealthy service checks. When a health check in Consul has been diff --git a/website/pages/docs/job-specification/connect.mdx b/website/content/docs/job-specification/connect.mdx similarity index 100% rename from website/pages/docs/job-specification/connect.mdx rename to website/content/docs/job-specification/connect.mdx diff --git a/website/pages/docs/job-specification/constraint.mdx b/website/content/docs/job-specification/constraint.mdx similarity index 100% rename from website/pages/docs/job-specification/constraint.mdx rename to website/content/docs/job-specification/constraint.mdx diff --git a/website/pages/docs/job-specification/csi_plugin.mdx b/website/content/docs/job-specification/csi_plugin.mdx similarity index 99% rename from website/pages/docs/job-specification/csi_plugin.mdx rename to website/content/docs/job-specification/csi_plugin.mdx index 84c6e4a73..359c388d5 100644 --- a/website/pages/docs/job-specification/csi_plugin.mdx +++ b/website/content/docs/job-specification/csi_plugin.mdx @@ -60,7 +60,6 @@ node is being drained. (controller or node) should be deployed on any given client node. Use a constraint as shown below. - ## `csi_plugin` Examples ```hcl diff --git a/website/pages/docs/job-specification/device.mdx b/website/content/docs/job-specification/device.mdx similarity index 100% rename from website/pages/docs/job-specification/device.mdx rename to website/content/docs/job-specification/device.mdx diff --git a/website/pages/docs/job-specification/dispatch_payload.mdx b/website/content/docs/job-specification/dispatch_payload.mdx similarity index 100% rename from website/pages/docs/job-specification/dispatch_payload.mdx rename to website/content/docs/job-specification/dispatch_payload.mdx diff --git a/website/pages/docs/job-specification/env.mdx b/website/content/docs/job-specification/env.mdx similarity index 100% rename from website/pages/docs/job-specification/env.mdx rename to website/content/docs/job-specification/env.mdx diff --git a/website/pages/docs/job-specification/ephemeral_disk.mdx b/website/content/docs/job-specification/ephemeral_disk.mdx similarity index 100% rename from website/pages/docs/job-specification/ephemeral_disk.mdx rename to website/content/docs/job-specification/ephemeral_disk.mdx diff --git a/website/pages/docs/job-specification/expose.mdx b/website/content/docs/job-specification/expose.mdx similarity index 100% rename from website/pages/docs/job-specification/expose.mdx rename to website/content/docs/job-specification/expose.mdx diff --git a/website/pages/docs/job-specification/gateway.mdx b/website/content/docs/job-specification/gateway.mdx similarity index 98% rename from website/pages/docs/job-specification/gateway.mdx rename to website/content/docs/job-specification/gateway.mdx index 14dd1720a..96a70aaef 100644 --- a/website/pages/docs/job-specification/gateway.mdx +++ b/website/content/docs/job-specification/gateway.mdx @@ -268,5 +268,5 @@ connect { [sidecar_task]: /docs/job-specification/sidecar_task [connect_timeout_ms]: https://www.consul.io/docs/agent/config-entries/service-resolver#connecttimeout [address]: /docs/job-specification/gateway#address-parameters -[Advanced Configuration]: https://www.consul.io/docs/connect/proxies/envoy#advanced-configuration -[Envoy Docker]: https://hub.docker.com/r/envoyproxy/envoy/tags +[advanced configuration]: https://www.consul.io/docs/connect/proxies/envoy#advanced-configuration +[envoy docker]: https://hub.docker.com/r/envoyproxy/envoy/tags diff --git a/website/pages/docs/job-specification/group.mdx b/website/content/docs/job-specification/group.mdx similarity index 100% rename from website/pages/docs/job-specification/group.mdx rename to website/content/docs/job-specification/group.mdx diff --git a/website/pages/docs/job-specification/hcl2/expressions.mdx b/website/content/docs/job-specification/hcl2/expressions.mdx similarity index 99% rename from website/pages/docs/job-specification/hcl2/expressions.mdx rename to website/content/docs/job-specification/hcl2/expressions.mdx index 24555b9a3..8d4f17780 100644 --- a/website/pages/docs/job-specification/hcl2/expressions.mdx +++ b/website/content/docs/job-specification/hcl2/expressions.mdx @@ -181,6 +181,7 @@ together results that have a common key: ```text {for s in var.list : substr(s, 0, 1) => s... if s != ""} ``` + + ## `dynamic` blocks Within top-level block constructs like sources, expressions can usually be used diff --git a/website/pages/docs/job-specification/hcl2/functions/collection/chunklist.mdx b/website/content/docs/job-specification/hcl2/functions/collection/chunklist.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/collection/chunklist.mdx rename to website/content/docs/job-specification/hcl2/functions/collection/chunklist.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/collection/coalesce.mdx b/website/content/docs/job-specification/hcl2/functions/collection/coalesce.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/collection/coalesce.mdx rename to website/content/docs/job-specification/hcl2/functions/collection/coalesce.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/collection/coalescelist.mdx b/website/content/docs/job-specification/hcl2/functions/collection/coalescelist.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/collection/coalescelist.mdx rename to website/content/docs/job-specification/hcl2/functions/collection/coalescelist.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/collection/compact.mdx b/website/content/docs/job-specification/hcl2/functions/collection/compact.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/collection/compact.mdx rename to website/content/docs/job-specification/hcl2/functions/collection/compact.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/collection/concat.mdx b/website/content/docs/job-specification/hcl2/functions/collection/concat.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/collection/concat.mdx rename to website/content/docs/job-specification/hcl2/functions/collection/concat.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/collection/contains.mdx b/website/content/docs/job-specification/hcl2/functions/collection/contains.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/collection/contains.mdx rename to website/content/docs/job-specification/hcl2/functions/collection/contains.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/collection/distinct.mdx b/website/content/docs/job-specification/hcl2/functions/collection/distinct.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/collection/distinct.mdx rename to website/content/docs/job-specification/hcl2/functions/collection/distinct.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/collection/element.mdx b/website/content/docs/job-specification/hcl2/functions/collection/element.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/collection/element.mdx rename to website/content/docs/job-specification/hcl2/functions/collection/element.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/collection/flatten.mdx b/website/content/docs/job-specification/hcl2/functions/collection/flatten.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/collection/flatten.mdx rename to website/content/docs/job-specification/hcl2/functions/collection/flatten.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/collection/index-fn.mdx b/website/content/docs/job-specification/hcl2/functions/collection/index-fn.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/collection/index-fn.mdx rename to website/content/docs/job-specification/hcl2/functions/collection/index-fn.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/collection/keys.mdx b/website/content/docs/job-specification/hcl2/functions/collection/keys.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/collection/keys.mdx rename to website/content/docs/job-specification/hcl2/functions/collection/keys.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/collection/length.mdx b/website/content/docs/job-specification/hcl2/functions/collection/length.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/collection/length.mdx rename to website/content/docs/job-specification/hcl2/functions/collection/length.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/collection/lookup.mdx b/website/content/docs/job-specification/hcl2/functions/collection/lookup.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/collection/lookup.mdx rename to website/content/docs/job-specification/hcl2/functions/collection/lookup.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/collection/merge.mdx b/website/content/docs/job-specification/hcl2/functions/collection/merge.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/collection/merge.mdx rename to website/content/docs/job-specification/hcl2/functions/collection/merge.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/collection/range.mdx b/website/content/docs/job-specification/hcl2/functions/collection/range.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/collection/range.mdx rename to website/content/docs/job-specification/hcl2/functions/collection/range.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/collection/reverse.mdx b/website/content/docs/job-specification/hcl2/functions/collection/reverse.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/collection/reverse.mdx rename to website/content/docs/job-specification/hcl2/functions/collection/reverse.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/collection/setintersection.mdx b/website/content/docs/job-specification/hcl2/functions/collection/setintersection.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/collection/setintersection.mdx rename to website/content/docs/job-specification/hcl2/functions/collection/setintersection.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/collection/setproduct.mdx b/website/content/docs/job-specification/hcl2/functions/collection/setproduct.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/collection/setproduct.mdx rename to website/content/docs/job-specification/hcl2/functions/collection/setproduct.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/collection/setunion.mdx b/website/content/docs/job-specification/hcl2/functions/collection/setunion.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/collection/setunion.mdx rename to website/content/docs/job-specification/hcl2/functions/collection/setunion.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/collection/slice.mdx b/website/content/docs/job-specification/hcl2/functions/collection/slice.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/collection/slice.mdx rename to website/content/docs/job-specification/hcl2/functions/collection/slice.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/collection/sort.mdx b/website/content/docs/job-specification/hcl2/functions/collection/sort.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/collection/sort.mdx rename to website/content/docs/job-specification/hcl2/functions/collection/sort.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/collection/values.mdx b/website/content/docs/job-specification/hcl2/functions/collection/values.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/collection/values.mdx rename to website/content/docs/job-specification/hcl2/functions/collection/values.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/collection/zipmap.mdx b/website/content/docs/job-specification/hcl2/functions/collection/zipmap.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/collection/zipmap.mdx rename to website/content/docs/job-specification/hcl2/functions/collection/zipmap.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/conversion/can.mdx b/website/content/docs/job-specification/hcl2/functions/conversion/can.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/conversion/can.mdx rename to website/content/docs/job-specification/hcl2/functions/conversion/can.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/conversion/convert.mdx b/website/content/docs/job-specification/hcl2/functions/conversion/convert.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/conversion/convert.mdx rename to website/content/docs/job-specification/hcl2/functions/conversion/convert.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/conversion/try.mdx b/website/content/docs/job-specification/hcl2/functions/conversion/try.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/conversion/try.mdx rename to website/content/docs/job-specification/hcl2/functions/conversion/try.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/crypto/bcrypt.mdx b/website/content/docs/job-specification/hcl2/functions/crypto/bcrypt.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/crypto/bcrypt.mdx rename to website/content/docs/job-specification/hcl2/functions/crypto/bcrypt.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/crypto/md5.mdx b/website/content/docs/job-specification/hcl2/functions/crypto/md5.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/crypto/md5.mdx rename to website/content/docs/job-specification/hcl2/functions/crypto/md5.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/crypto/rsadecrypt.mdx b/website/content/docs/job-specification/hcl2/functions/crypto/rsadecrypt.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/crypto/rsadecrypt.mdx rename to website/content/docs/job-specification/hcl2/functions/crypto/rsadecrypt.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/crypto/sha1.mdx b/website/content/docs/job-specification/hcl2/functions/crypto/sha1.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/crypto/sha1.mdx rename to website/content/docs/job-specification/hcl2/functions/crypto/sha1.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/crypto/sha256.mdx b/website/content/docs/job-specification/hcl2/functions/crypto/sha256.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/crypto/sha256.mdx rename to website/content/docs/job-specification/hcl2/functions/crypto/sha256.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/crypto/sha512.mdx b/website/content/docs/job-specification/hcl2/functions/crypto/sha512.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/crypto/sha512.mdx rename to website/content/docs/job-specification/hcl2/functions/crypto/sha512.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/datetime/formatdate.mdx b/website/content/docs/job-specification/hcl2/functions/datetime/formatdate.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/datetime/formatdate.mdx rename to website/content/docs/job-specification/hcl2/functions/datetime/formatdate.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/datetime/timeadd.mdx b/website/content/docs/job-specification/hcl2/functions/datetime/timeadd.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/datetime/timeadd.mdx rename to website/content/docs/job-specification/hcl2/functions/datetime/timeadd.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/datetime/timestamp.mdx b/website/content/docs/job-specification/hcl2/functions/datetime/timestamp.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/datetime/timestamp.mdx rename to website/content/docs/job-specification/hcl2/functions/datetime/timestamp.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/encoding/base64decode.mdx b/website/content/docs/job-specification/hcl2/functions/encoding/base64decode.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/encoding/base64decode.mdx rename to website/content/docs/job-specification/hcl2/functions/encoding/base64decode.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/encoding/base64encode.mdx b/website/content/docs/job-specification/hcl2/functions/encoding/base64encode.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/encoding/base64encode.mdx rename to website/content/docs/job-specification/hcl2/functions/encoding/base64encode.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/encoding/csvdecode.mdx b/website/content/docs/job-specification/hcl2/functions/encoding/csvdecode.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/encoding/csvdecode.mdx rename to website/content/docs/job-specification/hcl2/functions/encoding/csvdecode.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/encoding/jsondecode.mdx b/website/content/docs/job-specification/hcl2/functions/encoding/jsondecode.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/encoding/jsondecode.mdx rename to website/content/docs/job-specification/hcl2/functions/encoding/jsondecode.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/encoding/jsonencode.mdx b/website/content/docs/job-specification/hcl2/functions/encoding/jsonencode.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/encoding/jsonencode.mdx rename to website/content/docs/job-specification/hcl2/functions/encoding/jsonencode.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/encoding/urlencode.mdx b/website/content/docs/job-specification/hcl2/functions/encoding/urlencode.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/encoding/urlencode.mdx rename to website/content/docs/job-specification/hcl2/functions/encoding/urlencode.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/encoding/yamldecode.mdx b/website/content/docs/job-specification/hcl2/functions/encoding/yamldecode.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/encoding/yamldecode.mdx rename to website/content/docs/job-specification/hcl2/functions/encoding/yamldecode.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/encoding/yamlencode.mdx b/website/content/docs/job-specification/hcl2/functions/encoding/yamlencode.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/encoding/yamlencode.mdx rename to website/content/docs/job-specification/hcl2/functions/encoding/yamlencode.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/file/abspath.mdx b/website/content/docs/job-specification/hcl2/functions/file/abspath.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/file/abspath.mdx rename to website/content/docs/job-specification/hcl2/functions/file/abspath.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/file/basename.mdx b/website/content/docs/job-specification/hcl2/functions/file/basename.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/file/basename.mdx rename to website/content/docs/job-specification/hcl2/functions/file/basename.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/file/dirname.mdx b/website/content/docs/job-specification/hcl2/functions/file/dirname.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/file/dirname.mdx rename to website/content/docs/job-specification/hcl2/functions/file/dirname.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/file/file.mdx b/website/content/docs/job-specification/hcl2/functions/file/file.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/file/file.mdx rename to website/content/docs/job-specification/hcl2/functions/file/file.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/file/fileexists.mdx b/website/content/docs/job-specification/hcl2/functions/file/fileexists.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/file/fileexists.mdx rename to website/content/docs/job-specification/hcl2/functions/file/fileexists.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/file/fileset.mdx b/website/content/docs/job-specification/hcl2/functions/file/fileset.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/file/fileset.mdx rename to website/content/docs/job-specification/hcl2/functions/file/fileset.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/file/pathexpand.mdx b/website/content/docs/job-specification/hcl2/functions/file/pathexpand.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/file/pathexpand.mdx rename to website/content/docs/job-specification/hcl2/functions/file/pathexpand.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/index.mdx b/website/content/docs/job-specification/hcl2/functions/index.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/index.mdx rename to website/content/docs/job-specification/hcl2/functions/index.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/ipnet/cidrhost.mdx b/website/content/docs/job-specification/hcl2/functions/ipnet/cidrhost.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/ipnet/cidrhost.mdx rename to website/content/docs/job-specification/hcl2/functions/ipnet/cidrhost.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/ipnet/cidrnetmask.mdx b/website/content/docs/job-specification/hcl2/functions/ipnet/cidrnetmask.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/ipnet/cidrnetmask.mdx rename to website/content/docs/job-specification/hcl2/functions/ipnet/cidrnetmask.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/ipnet/cidrsubnet.mdx b/website/content/docs/job-specification/hcl2/functions/ipnet/cidrsubnet.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/ipnet/cidrsubnet.mdx rename to website/content/docs/job-specification/hcl2/functions/ipnet/cidrsubnet.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/ipnet/cidrsubnets.mdx b/website/content/docs/job-specification/hcl2/functions/ipnet/cidrsubnets.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/ipnet/cidrsubnets.mdx rename to website/content/docs/job-specification/hcl2/functions/ipnet/cidrsubnets.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/numeric/abs.mdx b/website/content/docs/job-specification/hcl2/functions/numeric/abs.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/numeric/abs.mdx rename to website/content/docs/job-specification/hcl2/functions/numeric/abs.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/numeric/ceil.mdx b/website/content/docs/job-specification/hcl2/functions/numeric/ceil.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/numeric/ceil.mdx rename to website/content/docs/job-specification/hcl2/functions/numeric/ceil.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/numeric/floor.mdx b/website/content/docs/job-specification/hcl2/functions/numeric/floor.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/numeric/floor.mdx rename to website/content/docs/job-specification/hcl2/functions/numeric/floor.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/numeric/log.mdx b/website/content/docs/job-specification/hcl2/functions/numeric/log.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/numeric/log.mdx rename to website/content/docs/job-specification/hcl2/functions/numeric/log.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/numeric/max.mdx b/website/content/docs/job-specification/hcl2/functions/numeric/max.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/numeric/max.mdx rename to website/content/docs/job-specification/hcl2/functions/numeric/max.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/numeric/min.mdx b/website/content/docs/job-specification/hcl2/functions/numeric/min.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/numeric/min.mdx rename to website/content/docs/job-specification/hcl2/functions/numeric/min.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/numeric/parseint.mdx b/website/content/docs/job-specification/hcl2/functions/numeric/parseint.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/numeric/parseint.mdx rename to website/content/docs/job-specification/hcl2/functions/numeric/parseint.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/numeric/pow.mdx b/website/content/docs/job-specification/hcl2/functions/numeric/pow.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/numeric/pow.mdx rename to website/content/docs/job-specification/hcl2/functions/numeric/pow.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/numeric/signum.mdx b/website/content/docs/job-specification/hcl2/functions/numeric/signum.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/numeric/signum.mdx rename to website/content/docs/job-specification/hcl2/functions/numeric/signum.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/string/chomp.mdx b/website/content/docs/job-specification/hcl2/functions/string/chomp.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/string/chomp.mdx rename to website/content/docs/job-specification/hcl2/functions/string/chomp.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/string/format.mdx b/website/content/docs/job-specification/hcl2/functions/string/format.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/string/format.mdx rename to website/content/docs/job-specification/hcl2/functions/string/format.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/string/formatlist.mdx b/website/content/docs/job-specification/hcl2/functions/string/formatlist.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/string/formatlist.mdx rename to website/content/docs/job-specification/hcl2/functions/string/formatlist.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/string/indent.mdx b/website/content/docs/job-specification/hcl2/functions/string/indent.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/string/indent.mdx rename to website/content/docs/job-specification/hcl2/functions/string/indent.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/string/join.mdx b/website/content/docs/job-specification/hcl2/functions/string/join.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/string/join.mdx rename to website/content/docs/job-specification/hcl2/functions/string/join.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/string/lower.mdx b/website/content/docs/job-specification/hcl2/functions/string/lower.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/string/lower.mdx rename to website/content/docs/job-specification/hcl2/functions/string/lower.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/string/regex_replace.mdx b/website/content/docs/job-specification/hcl2/functions/string/regex_replace.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/string/regex_replace.mdx rename to website/content/docs/job-specification/hcl2/functions/string/regex_replace.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/string/replace.mdx b/website/content/docs/job-specification/hcl2/functions/string/replace.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/string/replace.mdx rename to website/content/docs/job-specification/hcl2/functions/string/replace.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/string/split.mdx b/website/content/docs/job-specification/hcl2/functions/string/split.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/string/split.mdx rename to website/content/docs/job-specification/hcl2/functions/string/split.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/string/strrev.mdx b/website/content/docs/job-specification/hcl2/functions/string/strrev.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/string/strrev.mdx rename to website/content/docs/job-specification/hcl2/functions/string/strrev.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/string/substr.mdx b/website/content/docs/job-specification/hcl2/functions/string/substr.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/string/substr.mdx rename to website/content/docs/job-specification/hcl2/functions/string/substr.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/string/title.mdx b/website/content/docs/job-specification/hcl2/functions/string/title.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/string/title.mdx rename to website/content/docs/job-specification/hcl2/functions/string/title.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/string/trim.mdx b/website/content/docs/job-specification/hcl2/functions/string/trim.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/string/trim.mdx rename to website/content/docs/job-specification/hcl2/functions/string/trim.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/string/trimprefix.mdx b/website/content/docs/job-specification/hcl2/functions/string/trimprefix.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/string/trimprefix.mdx rename to website/content/docs/job-specification/hcl2/functions/string/trimprefix.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/string/trimspace.mdx b/website/content/docs/job-specification/hcl2/functions/string/trimspace.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/string/trimspace.mdx rename to website/content/docs/job-specification/hcl2/functions/string/trimspace.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/string/trimsuffix.mdx b/website/content/docs/job-specification/hcl2/functions/string/trimsuffix.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/string/trimsuffix.mdx rename to website/content/docs/job-specification/hcl2/functions/string/trimsuffix.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/string/upper.mdx b/website/content/docs/job-specification/hcl2/functions/string/upper.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/string/upper.mdx rename to website/content/docs/job-specification/hcl2/functions/string/upper.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/uuid/uuidv4.mdx b/website/content/docs/job-specification/hcl2/functions/uuid/uuidv4.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/uuid/uuidv4.mdx rename to website/content/docs/job-specification/hcl2/functions/uuid/uuidv4.mdx diff --git a/website/pages/docs/job-specification/hcl2/functions/uuid/uuidv5.mdx b/website/content/docs/job-specification/hcl2/functions/uuid/uuidv5.mdx similarity index 100% rename from website/pages/docs/job-specification/hcl2/functions/uuid/uuidv5.mdx rename to website/content/docs/job-specification/hcl2/functions/uuid/uuidv5.mdx diff --git a/website/pages/docs/job-specification/hcl2/index.mdx b/website/content/docs/job-specification/hcl2/index.mdx similarity index 97% rename from website/pages/docs/job-specification/hcl2/index.mdx rename to website/content/docs/job-specification/hcl2/index.mdx index 56edc2d5d..04e4a0ced 100644 --- a/website/pages/docs/job-specification/hcl2/index.mdx +++ b/website/content/docs/job-specification/hcl2/index.mdx @@ -19,7 +19,6 @@ adding expressions and input variables support to improve job spec reusability and readability. Also, the new HCL2 parser improves the error messages for invalid jobs. -