Merge pull request #41150 from neolit123/1.28-add-kubeadm-config-validate
kubeadm: add the "config validate" command as placeholder
This commit is contained in:
commit
6d956fe3b4
|
|
@ -0,0 +1,77 @@
|
||||||
|
<!--
|
||||||
|
The file is auto-generated from the Go source code of the component using a generic
|
||||||
|
[generator](https://github.com/kubernetes-sigs/reference-docs/). To learn how
|
||||||
|
to generate the reference documentation, please read
|
||||||
|
[Contributing to the reference documentation](/docs/contribute/generate-ref-docs/).
|
||||||
|
To update the reference content, please follow the
|
||||||
|
[Contributing upstream](/docs/contribute/generate-ref-docs/contribute-upstream/)
|
||||||
|
guide. You can file document formatting bugs against the
|
||||||
|
[reference-docs](https://github.com/kubernetes-sigs/reference-docs/) project.
|
||||||
|
-->
|
||||||
|
|
||||||
|
PLACEHOLDER
|
||||||
|
|
||||||
|
### Synopsis
|
||||||
|
|
||||||
|
PLACEHOLDER
|
||||||
|
|
||||||
|
```
|
||||||
|
kubeadm config validate [flags]
|
||||||
|
```
|
||||||
|
|
||||||
|
### Options
|
||||||
|
|
||||||
|
<table style="width: 100%; table-layout: fixed;">
|
||||||
|
<colgroup>
|
||||||
|
<col span="1" style="width: 10px;" />
|
||||||
|
<col span="1" />
|
||||||
|
</colgroup>
|
||||||
|
<tbody>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td colspan="2">-h, --help</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td><td style="line-height: 130%; word-wrap: break-word;"><p>help for validate</p></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td colspan="2">--config string</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td><td style="line-height: 130%; word-wrap: break-word;"><p>PLACEHOLDER</p></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Options inherited from parent commands
|
||||||
|
|
||||||
|
<table style="width: 100%; table-layout: fixed;">
|
||||||
|
<colgroup>
|
||||||
|
<col span="1" style="width: 10px;" />
|
||||||
|
<col span="1" />
|
||||||
|
</colgroup>
|
||||||
|
<tbody>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td colspan="2">--kubeconfig string Default: "/etc/kubernetes/admin.conf"</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td><td style="line-height: 130%; word-wrap: break-word;"><p>The kubeconfig file to use when talking to the cluster. If the flag is not set, a set of standard locations can be searched for an existing kubeconfig file.</p></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td colspan="2">--rootfs string</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td><td style="line-height: 130%; word-wrap: break-word;"><p>[EXPERIMENTAL] The path to the 'real' host root filesystem.</p></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -31,6 +31,8 @@ For more information on using the kubeadm configuration API navigate to
|
||||||
You can use `kubeadm config migrate` to convert your old configuration files that contain a deprecated
|
You can use `kubeadm config migrate` to convert your old configuration files that contain a deprecated
|
||||||
API version to a newer, supported API version.
|
API version to a newer, supported API version.
|
||||||
|
|
||||||
|
`kubeadm config validate` can be used for validating a configuration file.
|
||||||
|
|
||||||
`kubeadm config images list` and `kubeadm config images pull` can be used to list and pull the images
|
`kubeadm config images list` and `kubeadm config images pull` can be used to list and pull the images
|
||||||
that kubeadm requires.
|
that kubeadm requires.
|
||||||
|
|
||||||
|
|
@ -51,6 +53,10 @@ that kubeadm requires.
|
||||||
|
|
||||||
{{< include "generated/kubeadm_config_migrate.md" >}}
|
{{< include "generated/kubeadm_config_migrate.md" >}}
|
||||||
|
|
||||||
|
## kubeadm config validate {#cmd-config-validate}
|
||||||
|
|
||||||
|
{{< include "generated/kubeadm_config_validate.md" >}}
|
||||||
|
|
||||||
## kubeadm config images list {#cmd-config-images-list}
|
## kubeadm config images list {#cmd-config-images-list}
|
||||||
|
|
||||||
{{< include "generated/kubeadm_config_images_list.md" >}}
|
{{< include "generated/kubeadm_config_images_list.md" >}}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue