Skip to content

Commit 2593596

Browse files
authored
Merge pull request kubernetes#125782 from aborrero/master
procMount: fix default value documentation
2 parents 27fa59a + 1cb4243 commit 2593596

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

api/openapi-spec/swagger.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/openapi-spec/v3/api__v1_openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7229,7 +7229,7 @@
72297229
"type": "boolean"
72307230
},
72317231
"procMount": {
7232-
"description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.",
7232+
"description": "procMount denotes the type of proc mount to use for the containers. The default value is Default which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.",
72337233
"type": "string"
72347234
},
72357235
"readOnlyRootFilesystem": {

api/openapi-spec/v3/apis__apps__v1_openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4604,7 +4604,7 @@
46044604
"type": "boolean"
46054605
},
46064606
"procMount": {
4607-
"description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.",
4607+
"description": "procMount denotes the type of proc mount to use for the containers. The default value is Default which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.",
46084608
"type": "string"
46094609
},
46104610
"readOnlyRootFilesystem": {

api/openapi-spec/v3/apis__batch__v1_openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3808,7 +3808,7 @@
38083808
"type": "boolean"
38093809
},
38103810
"procMount": {
3811-
"description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.",
3811+
"description": "procMount denotes the type of proc mount to use for the containers. The default value is Default which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.",
38123812
"type": "string"
38133813
},
38143814
"readOnlyRootFilesystem": {

pkg/apis/core/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6231,7 +6231,7 @@ type SecurityContext struct {
62316231
// +optional
62326232
AllowPrivilegeEscalation *bool
62336233
// ProcMount denotes the type of proc mount to use for the containers.
6234-
// The default is DefaultProcMount which uses the container runtime defaults for
6234+
// The default value is Default which uses the container runtime defaults for
62356235
// readonly paths and masked paths.
62366236
// Note that this field cannot be set when spec.os.name is windows.
62376237
// +optional

pkg/generated/openapi/zz_generated.openapi.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

staging/src/k8s.io/api/core/v1/generated.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

staging/src/k8s.io/api/core/v1/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7490,7 +7490,7 @@ type SecurityContext struct {
74907490
// +optional
74917491
AllowPrivilegeEscalation *bool `json:"allowPrivilegeEscalation,omitempty" protobuf:"varint,7,opt,name=allowPrivilegeEscalation"`
74927492
// procMount denotes the type of proc mount to use for the containers.
7493-
// The default is DefaultProcMount which uses the container runtime defaults for
7493+
// The default value is Default which uses the container runtime defaults for
74947494
// readonly paths and masked paths.
74957495
// This requires the ProcMountType feature flag to be enabled.
74967496
// Note that this field cannot be set when spec.os.name is windows.

staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)