mirror of
https://github.com/kemko/nomad.git
synced 2026-01-04 17:35:43 +03:00
Rename `Internals` section to `Concepts` to match core docs structure and expand on how policies are evaluated. Also include missing documentation for check grouping and fix examples to use the new feature.
19 lines
576 B
JavaScript
19 lines
576 B
JavaScript
module.exports = [
|
|
// Rename and re-arrange Autoscaling Internals section
|
|
{
|
|
source: '/nomad/tools/autoscaling/internals/:path*',
|
|
destination: '/nomad/tools/autoscaling/concepts/:path*',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/nomad/tools/autoscaling/concepts/checks',
|
|
destination: '/nomad/tools/autoscaling/concepts/policy-eval/checks',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/nomad/tools/autoscaling/concepts/node-selector-strategy',
|
|
destination: '/nomad/tools/autoscaling/concepts/policy-eval/node-selector-strategy',
|
|
permanent: true,
|
|
},
|
|
]
|