You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Config is inline [`containerd` configuration TOML](https://github.com/containerd/containerd/blob/main/docs/man/containerd-config.toml.5.md)
71
+
that will be [imported](https://github.com/containerd/containerd/blob/32169d591dbc6133ef7411329b29d0c0433f8c4d/docs/man/containerd-config.toml.5.md?plain=1#L146-L154)
72
+
by the default configuration file.
58
73
type: string
59
74
type: object
75
+
instance:
76
+
description: InstanceOptions determines how the node's operating system
77
+
and devices are configured.
78
+
properties:
79
+
localStorage:
80
+
description: LocalStorageOptions control how [EC2 instance stores](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/InstanceStorage.html)
81
+
are used when available.
82
+
properties:
83
+
strategy:
84
+
description: LocalStorageStrategy specifies how to handle
85
+
an instance's local storage devices.
86
+
enum:
87
+
- RAID0
88
+
- Mount
89
+
type: string
90
+
type: object
91
+
type: object
60
92
kubelet:
93
+
description: KubeletOptions are additional parameters passed to `kubelet`.
61
94
properties:
62
95
config:
63
96
additionalProperties:
64
97
type: object
65
98
x-kubernetes-preserve-unknown-fields: true
66
-
description: Config is a kubeletconfig that can be provided by
67
-
the user to override default generated configurations https://kubernetes.io/docs/reference/config-api/kubelet-config.v1/
99
+
description: Config is a [`KubeletConfiguration`](https://kubernetes.io/docs/reference/config-api/kubelet-config.v1/)
100
+
that will be merged with the defaults.
68
101
type: object
69
102
flags:
70
-
description: Flags is a list of command-line kubelet arguments.
71
-
These arguments are amended to the generated defaults, and therefore
72
-
will act as overrides https://kubernetes.io/docs/reference/command-line-tools-reference/kubelet/
103
+
description: Flags are [command-line `kubelet`` arguments](https://kubernetes.io/docs/reference/command-line-tools-reference/kubelet/).
Copy file name to clipboardExpand all lines: nodeadm/doc/api.md
+36-1Lines changed: 36 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,17 @@ _Appears in:_
35
35
| --- | --- |
36
36
|`config`_string_| Config is inline [`containerd` configuration TOML](https://github.com/containerd/containerd/blob/main/docs/man/containerd-config.toml.5.md) that will be [imported](https://github.com/containerd/containerd/blob/32169d591dbc6133ef7411329b29d0c0433f8c4d/docs/man/containerd-config.toml.5.md?plain=1#L146-L154) by the default configuration file. |
37
37
38
+
#### InstanceOptions
39
+
40
+
InstanceOptions determines how the node's operating system and devices are configured.
KubeletOptions are additional parameters passed to `kubelet`.
@@ -47,6 +58,29 @@ _Appears in:_
47
58
|`config`_object (keys:string, values:RawExtension)_| Config is a [`KubeletConfiguration`](https://kubernetes.io/docs/reference/config-api/kubelet-config.v1/) that will be merged with the defaults. |
48
59
|`flags`_string array_| Flags are [command-line `kubelet`` arguments](https://kubernetes.io/docs/reference/command-line-tools-reference/kubelet/). that will be appended to the defaults. |
49
60
61
+
#### LocalStorageOptions
62
+
63
+
LocalStorageOptions control how [EC2 instance stores](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/InstanceStorage.html) are used when available.
0 commit comments