mirror of
https://github.com/status-im/consul.git
synced 2025-01-22 19:50:36 +00:00
8f78d7cafd
* Backport of ci: update the security-scanner gha token into release/1.20.x (#21754) backport of commit eb9dbc93f88e8b87d60ed55101a577e49e9299e4 Co-authored-by: dduzgun-security <deniz.duzgun@hashicorp.com> * Backport of Initialize 1.20 Release into release/1.20.x (#21753) * backport of commit a33e903cdf367c9be90b61464aee97fdd4294fd9 * backport of commit 37163dc1a81abb4ba88c18c204ccca5ee61dae5d * backport of commit 38f0907c7a9f4851080bdec3bb182f1b9e5bed1e * backport of commit 6ab7ec254b51e6f5012688f8fff3d36a33e8ee57 * backport of commit 7ac4178186a22d1e11cdf0ef69c00a658a6484d0 * backport of commit 5dfebb2cf3a46d3c8a96881b5ab77bd0ff23f5c0 * backport of commit 316d68cb847193f184d3a54fc103996151d1d68a --------- Co-authored-by: Sarah Alsmiller <sarah.alsmiller@hashicorp.com> Co-authored-by: sarahalsmiller <100602640+sarahalsmiller@users.noreply.github.com> * Backport of Stage rc release into release/1.20.x (#21772) backport of commit d311f2b63836e1cae1b342f6b0fc07ff69e93f6c Co-authored-by: Sarah Alsmiller <sarah.alsmiller@hashicorp.com> * Backport of Upgrade ubi image to 9.4 into release/1.20.x (#21773) * backport of commit 888e302f6e87f27d0c8a0c6facfd6c3a6c8033c5 * backport of commit 17499dc4dcca4aa6f67b3f95bd24b433cd32556b * backport of commit d933d3727d1ddf4566d0ee7612e3a64029034314 --------- Co-authored-by: Dhia Ayachi <dhia.ayachi@gmail.com> Co-authored-by: sarahalsmiller <100602640+sarahalsmiller@users.noreply.github.com> * Backport of security: update alpine base image to 3.20 into release/1.20.x (#21774) * backport of commit 4421ce1677605ae118f741f4251fce65faa8ff87 * Upgrade ubi image to 9.4 (#21750) --------- Co-authored-by: Michael Zalimeni <michael.zalimeni@hashicorp.com> Co-authored-by: Sarah Alsmiller <sarah.alsmiller@hashicorp.com> Co-authored-by: sarahalsmiller <100602640+sarahalsmiller@users.noreply.github.com> * Backport of fix spacing of bash scripts into release/1.20.x (#21769) * backport of commit 1e97297215f985e153dd4e92c4444acebbfce0db * backport of commit b7053f53617fec902a7bf07ebb3b8077334a5cdb * backport of commit a391f2fa3ce1eb250e5c10546cc1459b5649e587 --------- Co-authored-by: jm96441n <john.maguire@hashicorp.com> * Backport of [NET-11150] ci: fix conditional skip and add safeguard into release/1.20.x (#21783) backport of commit c3db6c90013eaa3f4a03d2d06ffea2eb9df3698f Co-authored-by: Michael Zalimeni <michael.zalimeni@hashicorp.com> * initial commit * Initial pages * Edits to other pages + nav & redirects * minor fixes * Backport of security: update alpine base image to 3.20 into release/1.20.x (#21774) * backport of commit 4421ce1677605ae118f741f4251fce65faa8ff87 * Upgrade ubi image to 9.4 (#21750) --------- Co-authored-by: Michael Zalimeni <michael.zalimeni@hashicorp.com> Co-authored-by: Sarah Alsmiller <sarah.alsmiller@hashicorp.com> Co-authored-by: sarahalsmiller <100602640+sarahalsmiller@users.noreply.github.com> * CE-679 * align with main * Content updates * minor edit * Apply suggestions from code review Co-authored-by: Aimee Ukasick <aimee.ukasick@hashicorp.com> Co-authored-by: Blake Covarrubias <blake@covarrubi.as> * CoreDNS config update * small edits * typo fix --------- Co-authored-by: hc-github-team-consul-core <github-team-consul-core@hashicorp.com> Co-authored-by: dduzgun-security <deniz.duzgun@hashicorp.com> Co-authored-by: Sarah Alsmiller <sarah.alsmiller@hashicorp.com> Co-authored-by: sarahalsmiller <100602640+sarahalsmiller@users.noreply.github.com> Co-authored-by: Dhia Ayachi <dhia.ayachi@gmail.com> Co-authored-by: Michael Zalimeni <michael.zalimeni@hashicorp.com> Co-authored-by: jm96441n <john.maguire@hashicorp.com> Co-authored-by: Aimee Ukasick <aimee.ukasick@hashicorp.com> Co-authored-by: Blake Covarrubias <blake@covarrubi.as>
261 lines
7.8 KiB
JavaScript
261 lines
7.8 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
// REDIRECTS FILE
|
|
|
|
// See the README file in this directory for documentation. Please do not
|
|
// modify or delete existing redirects without first verifying internally.
|
|
// Next.js redirect documentation: https://nextjs.org/docs/api-reference/next.config.js/redirects
|
|
|
|
module.exports = [
|
|
{
|
|
source: '/consul/docs/connect/cluster-peering/create-manage-peering',
|
|
destination:
|
|
'/consul/docs/connect/cluster-peering/usage/establish-cluster-peering',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/connect/cluster-peering/usage/establish-peering',
|
|
destination:
|
|
'/consul/docs/connect/cluster-peering/usage/establish-cluster-peering',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/connect/cluster-peering/k8s',
|
|
destination: '/consul/docs/k8s/connect/cluster-peering/tech-specs',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/connect/intentions#intention-management-permissions',
|
|
destination: `/consul/docs/connect/intentions/create-manage-intentions#acl-requirements`,
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/connect/intentions#intention-basics',
|
|
destination: `/consul/docs/connect/intentions`,
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/connect/transparent-proxy',
|
|
destination: '/consul/docs/k8s/connect/transparent-proxy',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/agent/limits/init-rate-limits',
|
|
destination: '/consul/docs/agent/limits/usage/init-rate-limits',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/agent/limits/set-global-traffic-rate-limits',
|
|
destination:
|
|
'/consul/docs/agent/limits/usage/set-global-traffic-rate-limits',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source:
|
|
'/consul/docs/connect/gateways/mesh-gateway/service-to-service-traffic-peers',
|
|
destination:
|
|
'/consul/docs/connect/cluster-peering/usage/establish-cluster-peering',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/enterprise/sentinel',
|
|
destination:
|
|
'/consul/docs/dynamic-app-config/kv#using-sentinel-to-apply-policies-for-consul-kv',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source:
|
|
'/consul/docs/connect/gateways/mesh-gateway/service-to-service-traffic-datacenters',
|
|
destination: '/consul/docs/k8s/deployment-configurations/multi-cluster',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/connect/registration/service-registration',
|
|
destination: '/consul/docs/connect/proxies/proxy-config-reference',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/connect/registration',
|
|
destination: '/consul/docs/connect/proxies/',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/connect/registration/sidecar-service',
|
|
destination: '/consul/docs/connect/proxies/deploy-sidecar-services',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/ecs/terraform/install',
|
|
destination: '/consul/docs/ecs/deploy/terraform',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/ecs/terraform/secure-configuration',
|
|
destination: '/consul/docs/ecs/deploy/terraform',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/ecs/terraform/migrate-existing-tasks',
|
|
destination: '/consul/docs/ecs/deploy/migrate-existing-tasks',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/ecs/manual/install',
|
|
destination: '/consul/docs/ecs/deploy/manual',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/ecs/manual/secure-configuration',
|
|
destination: '/consul/docs/ecs/deploy/manual',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/ecs/manual/acl-controller',
|
|
destination: '/consul/docs/ecs/deploy/manual',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/ecs/task-resource-usage',
|
|
destination: '/consul/docs/ecs/tech-specs',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/ecs/requirements',
|
|
destination: '/consul/docs/ecs/tech-specs',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/ecs/configuration-reference',
|
|
destination: '/consul/docs/ecs/reference/configuration-reference',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/ecs/compatibility',
|
|
destination: '/consul/docs/ecs/reference/compatibility',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/connect/gateways/api-gateway/usage',
|
|
destination:
|
|
'/consul/docs/connect/gateways/api-gateway/deploy/listeners-vms',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/api-gateway',
|
|
destination: '/consul/docs/connect/gateways/api-gateway',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/api-gateway/install',
|
|
destination: '/consul/docs/connect/gateways/api-gateway/install-k8s',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/api-gateway/usage/reroute-http-requests',
|
|
destination:
|
|
'/consul/docs/connect/gateways/api-gateway/define-routes/reroute-http-requests',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/api-gateway/usage/route-to-peered-services',
|
|
destination:
|
|
'/consul/docs/connect/gateways/api-gateway/define-routes/route-to-peered-services',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/api-gateway/usage/errors',
|
|
destination: '/consul/docs/connect/gateways/api-gateway/errors',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/api-gateway/usage/usage',
|
|
destination:
|
|
'/consul/docs/connect/gateways/api-gateway/deploy/listeners-k8s',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/api-gateway/upgrades',
|
|
destination: '/consul/docs/connect/gateways/api-gateway/upgrades-k8s',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/api-gateway/configuration',
|
|
destination: '/consul/docs/connect/gateways/api-gateway/configuration',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/api-gateway/configuration/:slug',
|
|
destination:
|
|
'/consul/docs/connect/gateways/api-gateway/configuration/:slug',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/connect/failover',
|
|
destination: '/consul/docs/connect/manage-traffic/failover',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/connect/l7',
|
|
destination: '/consul/docs/connect/manage-traffic',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/connect/l7/:slug',
|
|
destination: '/consul/docs/connect/manage-traffic/:slug',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/v1.8.x/connect/config-entries/:slug',
|
|
destination: '/consul/docs/v1.8.x/agent/config-entries/:slug',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/architecture/catalog/v1/:slug',
|
|
destination: '/consul/docs/architecture/catalog/:slug',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/:version(v1\.(?:8|9|10|11|12|13|14|15|16|17)\.x)/architecture/catalog/:slug*',
|
|
destination: '/consul/docs/:version/architecture/catalog/v1/:slug',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/nia/network-drivers/terraform-cloud',
|
|
destination: '/consul/docs/nia/network-drivers/hcp-terraform',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/:version(v1\.(?:8|9|10|11|12|13|14|15|16|17)\.x)/nia/network-drivers/hcp-terraform',
|
|
destination: '/consul/docs/:version/nia/network-drivers/terraform-cloud',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/k8s/multiport/:slug',
|
|
destination: '/consul/docs/architecture/catalog#v2-catalog',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: 'consul/docs/architecture/v2/:slug*',
|
|
destination: '/consul/docs/architecture/catalog#v2-catalog',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/commands/resource/:slug',
|
|
destination: '/consul/docs/architecture/catalog#v2-catalog',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/k8s/dns',
|
|
destination: '/consul/docs/k8s/dns/enable',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/:version(v1\.(?:11|12|13|14|15|16|17|18)\.x)/k8s/dns/enable',
|
|
destination: '/consul/docs/:version/k8s/dns',
|
|
permanent: true,
|
|
}
|
|
]
|