docs(api): fix broken hyperlinks

This commit is contained in:
Jeong Jinwoo
2023-09-04 23:51:24 +09:00
parent e19ca5405a
commit 5c1a022a3c
6 changed files with 7 additions and 7 deletions

View File

@@ -18,7 +18,7 @@ kustomize CLI, and removal itself will happen in a future major version bump.
You can run `kustomize edit fix` to automatically convert `bases` to `resources`.
{{% /pageinfo %}}
Move entries into the [resources](/references/kustomize/kustomization/resource)
Move entries into the [resources](/docs/reference/api/resources)
field. This allows bases - which are still a
[central concept](/references/kustomize/glossary#base) - to be
ordered relative to other input resources.

View File

@@ -7,7 +7,7 @@ description: >
Add labels and selectors to add all resources.
---
[labels]: https://kubectl.docs.kubernetes.io/references/kustomize/kustomization/labels/
[labels]: /docs/reference/api/labels/
Add labels and selectors to all resources. If the label key already is present on the resource,
the value will be overridden.

View File

@@ -16,7 +16,7 @@ two releases between deprecation and removal of Kustomization v1beta1 support fr
kustomize CLI, and removal itself will happen in a future major version bump.
Please move your `patchesStrategicMerge` into
the [patches](/references/kustomize/kustomization/patches) field. This field supports patchesStrategicMerge,
the [patches](/docs/reference/api/patches) field. This field supports patchesStrategicMerge,
but with slightly different syntax. You can run `kustomize edit fix` to automatically convert
`patchesStrategicMerge` to `patches`.
{{% /pageinfo %}}

View File

@@ -16,7 +16,7 @@ two releases between deprecation and removal of Kustomization v1beta1 support fr
kustomize CLI, and removal itself will happen in a future major version bump.
Please move your `patchesJson6902` into
the [patches](/references/kustomize/kustomization/patches) field. This field supports patchesJson6902,
the [patches](/docs/reference/api/patches) field. This field supports patchesJson6902,
but with slightly different syntax. You can run `kustomize edit fix` to automatically convert
`patchesJson6902` to `patches`.
{{% /pageinfo %}}

View File

@@ -9,7 +9,7 @@ description: >
Each entry in the argument list results in the creation of one Secret resource (it's a generator of N secrets).
This works like the [configMapGenerator](/references/kustomize/kustomization/configmapgenerator).
This works like the [configMapGenerator](/docs/reference/api/configmapgenerator).
```yaml
apiVersion: kustomize.config.k8s.io/v1beta1

View File

@@ -7,7 +7,7 @@ description: >
Substitute name references.
---
[replacements]: https://kubectl.docs.kubernetes.io/references/kustomize/kustomization/replacements/
[replacements]: /docs/reference/api/replacements/
{{% pageinfo color="warning" %}}
The `vars` field was deprecated in v5.0.0. This field will never be removed from the
@@ -18,7 +18,7 @@ two releases between deprecation and removal of Kustomization v1beta1 support fr
kustomize CLI, and removal itself will happen in a future major version bump.
Please try to migrate to the
the [replacements](/references/kustomize/kustomization/replacements) field. If you are
the [replacements](/docs/reference/api/replacements) field. If you are
unable to restructure your configuration to use replacements instead of vars, please
ask for help in slack or file an issue for guidance.