-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update content for 1.31 * bump install command
- Loading branch information
Showing
87 changed files
with
4,898 additions
and
752 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,152 @@ | ||
### extra-sans | ||
**Type:** `[]string`<br> | ||
|
||
List of extra SANs to be added to certificates. | ||
|
||
### front-proxy-client-crt | ||
**Type:** `string`<br> | ||
|
||
The client certificate to be used for the front proxy. | ||
If omitted defaults to an auto generated certificate. | ||
|
||
### front-proxy-client-key | ||
**Type:** `string`<br> | ||
|
||
The client key to be used for the front proxy. | ||
If omitted defaults to an auto generated key. | ||
|
||
### kube-proxy-client-crt | ||
**Type:** `string`<br> | ||
|
||
The client certificate to be used by kubelet for communicating with the kube-apiserver. | ||
If omitted defaults to an auto generated certificate. | ||
|
||
### kube-proxy-client-key | ||
**Type:** `string`<br> | ||
|
||
The client key to be used by kubelet for communicating with the kube-apiserver. | ||
If omitted defaults to an auto generated key. | ||
|
||
### kube-scheduler-client-crt | ||
**Type:** `string`<br> | ||
|
||
The client certificate to be used for the kube-scheduler. | ||
If omitted defaults to an auto generated certificate. | ||
|
||
### kube-scheduler-client-key | ||
**Type:** `string`<br> | ||
|
||
The client key to be used for the kube-scheduler. | ||
If omitted defaults to an auto generated key. | ||
|
||
### kube-controller-manager-client-crt | ||
**Type:** `string`<br> | ||
|
||
The client certificate to be used for the Kubernetes controller manager. | ||
If omitted defaults to an auto generated certificate. | ||
|
||
### kube-controller-manager-client-key | ||
**Type:** `string`<br> | ||
|
||
The client key to be used for the Kubernetes controller manager. | ||
If omitted defaults to an auto generated key. | ||
|
||
### apiserver-crt | ||
**Type:** `string`<br> | ||
|
||
The certificate to be used for the kube-apiserver. | ||
If omitted defaults to an auto generated certificate. | ||
|
||
### apiserver-key | ||
**Type:** `string`<br> | ||
|
||
The key to be used for the kube-apiserver. | ||
If omitted defaults to an auto generated key. | ||
|
||
### kubelet-crt | ||
**Type:** `string`<br> | ||
|
||
The certificate to be used for the kubelet. | ||
If omitted defaults to an auto generated certificate. | ||
|
||
### kubelet-key | ||
**Type:** `string`<br> | ||
|
||
The key to be used for the kubelet. | ||
If omitted defaults to an auto generated key. | ||
|
||
### kubelet-client-crt | ||
**Type:** `string`<br> | ||
|
||
The client certificate to be used for the kubelet. | ||
If omitted defaults to an auto generated certificate. | ||
|
||
### kubelet-client-key | ||
**Type:** `string`<br> | ||
|
||
The client key to be used for the kubelet. | ||
If omitted defaults to an auto generated key. | ||
|
||
### extra-node-config-files | ||
**Type:** `map[string]string`<br> | ||
|
||
Additional files that are uploaded `/var/snap/k8s/common/args/conf.d/<filename>` | ||
to a node on bootstrap. These files can then be referenced by Kubernetes | ||
service arguments. | ||
|
||
The format is `map[<filename>]<filecontent>`. | ||
|
||
### extra-node-kube-apiserver-args | ||
**Type:** `map[string]string`<br> | ||
|
||
Additional arguments that are passed to the `kube-apiserver` only for that specific node. | ||
A parameter that is explicitly set to `null` is deleted. | ||
The format is `map[<--flag-name>]<value>`. | ||
|
||
### extra-node-kube-controller-manager-args | ||
**Type:** `map[string]string`<br> | ||
|
||
Additional arguments that are passed to the `kube-controller-manager` only for that specific node. | ||
A parameter that is explicitly set to `null` is deleted. | ||
The format is `map[<--flag-name>]<value>`. | ||
|
||
### extra-node-kube-scheduler-args | ||
**Type:** `map[string]string`<br> | ||
|
||
Additional arguments that are passed to the `kube-scheduler` only for that specific node. | ||
A parameter that is explicitly set to `null` is deleted. | ||
The format is `map[<--flag-name>]<value>`. | ||
|
||
### extra-node-kube-proxy-args | ||
**Type:** `map[string]string`<br> | ||
|
||
Additional arguments that are passed to the `kube-proxy` only for that specific node. | ||
A parameter that is explicitly set to `null` is deleted. | ||
The format is `map[<--flag-name>]<value>`. | ||
|
||
### extra-node-kubelet-args | ||
**Type:** `map[string]string`<br> | ||
|
||
Additional arguments that are passed to the `kubelet` only for that specific node. | ||
A parameter that is explicitly set to `null` is deleted. | ||
The format is `map[<--flag-name>]<value>`. | ||
|
||
### extra-node-containerd-args | ||
**Type:** `map[string]string`<br> | ||
|
||
Additional arguments that are passed to `containerd` only for that specific node. | ||
A parameter that is explicitly set to `null` is deleted. | ||
The format is `map[<--flag-name>]<value>`. | ||
|
||
### extra-node-k8s-dqlite-args | ||
**Type:** `map[string]string`<br> | ||
|
||
Additional arguments that are passed to `k8s-dqlite` only for that specific node. | ||
A parameter that is explicitly set to `null` is deleted. | ||
The format is `map[<--flag-name>]<value>`. | ||
|
||
### extra-node-containerd-config | ||
**Type:** `apiv1.MapStringAny`<br> | ||
|
||
Extra configuration for the containerd config.toml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
``` | ||
sudo snap install k8s --classic --channel=1.31/stable | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
### kubelet-crt | ||
**Type:** `string`<br> | ||
|
||
The certificate to be used for the kubelet. | ||
If omitted defaults to an auto generated certificate. | ||
|
||
### kubelet-key | ||
**Type:** `string`<br> | ||
|
||
The key to be used for the kubelet. | ||
If omitted defaults to an auto generated key. | ||
|
||
### kubelet-client-crt | ||
**Type:** `string`<br> | ||
|
||
The client certificate to be used for the kubelet. | ||
If omitted defaults to an auto generated certificate. | ||
|
||
### kubelet-client-key | ||
**Type:** `string`<br> | ||
|
||
The client key to be used for the kubelet. | ||
If omitted defaults to an auto generated key. | ||
|
||
### kube-proxy-client-crt | ||
**Type:** `string`<br> | ||
|
||
The client certificate to be used for the kube-proxy. | ||
If omitted defaults to an auto generated certificate. | ||
|
||
### kube-proxy-client-key | ||
**Type:** `string`<br> | ||
|
||
The client key to be used for the kube-proxy. | ||
If omitted defaults to an auto generated key. | ||
|
||
### extra-node-config-files | ||
**Type:** `map[string]string`<br> | ||
|
||
Additional files that are uploaded `/var/snap/k8s/common/args/conf.d/<filename>` | ||
to a node on bootstrap. These files can then be referenced by Kubernetes | ||
service arguments. | ||
|
||
The format is `map[<filename>]<filecontent>`. | ||
|
||
### extra-node-kube-proxy-args | ||
**Type:** `map[string]string`<br> | ||
|
||
Additional arguments that are passed to the `kube-proxy` only for that specific node. | ||
A parameter that is explicitly set to `null` is deleted. | ||
The format is `map[<--flag-name>]<value>`. | ||
|
||
### extra-node-kubelet-args | ||
**Type:** `map[string]string`<br> | ||
|
||
Additional arguments that are passed to the `kubelet` only for that specific node. | ||
A parameter that is explicitly set to `null` is deleted. | ||
The format is `map[<--flag-name>]<value>`. | ||
|
||
### extra-node-containerd-args | ||
**Type:** `map[string]string`<br> | ||
|
||
Additional arguments that are passed to `containerd` only for that specific node. | ||
A parameter that is explicitly set to `null` is deleted. | ||
The format is `map[<--flag-name>]<value>`. | ||
|
||
### extra-node-k8s-apiserver-proxy-args | ||
**Type:** `map[string]string`<br> | ||
|
||
Additional arguments that are passed to `k8s-api-server-proxy` only for that specific node. | ||
A parameter that is explicitly set to `null` is deleted. | ||
The format is `map[<--flag-name>]<value>`. | ||
|
||
### extra-node-containerd-config | ||
**Type:** `apiv1.MapStringAny`<br> | ||
|
||
Extra configuration for the containerd config.toml | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.