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
This commit modifies the following files:
- pkg/apis/core/types.go
- staging/src/k8s.io/api/core/v1/types.go
Other changes were auto-generated by running `make update`.
Signed-off-by: Akihiro Suda <[email protected]>
Kubernetes-commit: d940886d0a4ee9aa8a7ca075fee175b002baf883
Copy file name to clipboardExpand all lines: core/v1/types_swagger_doc_generated.go
+41-7
Original file line number
Diff line number
Diff line change
@@ -481,6 +481,7 @@ var map_ContainerStatus = map[string]string{
481
481
"started": "Started indicates whether the container has finished its postStart lifecycle hook and passed its startup probe. Initialized as false, becomes true after startupProbe is considered successful. Resets to false when the container is restarted, or if kubelet loses state temporarily. In both cases, startup probes will run again. Is always true when no startupProbe is defined and container is running and has passed the postStart lifecycle hook. The null value must be treated the same as false.",
482
482
"allocatedResources": "AllocatedResources represents the compute resources allocated for this container by the node. Kubelet sets this value to Container.Resources.Requests upon successful pod admission and after successfully admitting desired pod resize.",
483
483
"resources": "Resources represents the compute resource requests and limits that have been successfully enacted on the running container after it has been started or has been successfully resized.",
"": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.",
1218
1238
"nodeSelectorTerms": "Required. A list of node selector terms. The terms are ORed.",
@@ -1271,6 +1291,7 @@ var map_NodeStatus = map[string]string{
1271
1291
"volumesInUse": "List of attachable volumes in use (mounted) by the node.",
1272
1292
"volumesAttached": "List of volumes that are attached to the node.",
1273
1293
"config": "Status of the config assigned to the node via the dynamic Kubelet config feature.",
1294
+
"runtimeClasses": "The available runtime classes.",
"": "VolumeMount describes a mounting of a Volume within a container.",
2586
-
"name": "This must match the Name of a Volume.",
2587
-
"readOnly": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.",
2588
-
"mountPath": "Path within the container at which the volume should be mounted. Must not contain ':'.",
2589
-
"subPath": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).",
2590
-
"mountPropagation": "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.",
2591
-
"subPathExpr": "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). SubPathExpr and SubPath are mutually exclusive.",
2606
+
"": "VolumeMount describes a mounting of a Volume within a container.",
2607
+
"name": "This must match the Name of a Volume.",
2608
+
"readOnly": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.",
2609
+
"recursiveReadOnly": "RecursiveReadOnly specifies whether read-only mounts should be handled recursively.\n\nIf ReadOnly is false, this field has no meaning and must be unspecified.\n\nIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only. If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime. If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reason.\n\nIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None).\n\nIf this field is not specified, it is treated as an equivalent of Disabled.",
2610
+
"mountPath": "Path within the container at which the volume should be mounted. Must not contain ':'.",
2611
+
"subPath": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).",
2612
+
"mountPropagation": "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10. When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None).",
2613
+
"subPathExpr": "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). SubPathExpr and SubPath are mutually exclusive.",
"": "VolumeMountStatus shows status of volume mounts.",
2622
+
"name": "Name corresponds to the name of the original VolumeMount.",
2623
+
"mountPath": "MountPath corresponds to the original VolumeMount.",
2624
+
"readOnly": "ReadOnly corresponds to the original VolumeMount.",
2625
+
"recursiveReadOnly": "RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts). An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result.",
0 commit comments