From 5e63ef0adbddc333d9bb303d4931a9fb57fcf874 Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Fri, 12 Oct 2018 12:08:20 -0400 Subject: [PATCH] fix omitempty on ProcMount Signed-off-by: Jess Frazelle --- staging/src/k8s.io/api/core/v1/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/staging/src/k8s.io/api/core/v1/types.go b/staging/src/k8s.io/api/core/v1/types.go index 9b575bf68a..0ba6054194 100644 --- a/staging/src/k8s.io/api/core/v1/types.go +++ b/staging/src/k8s.io/api/core/v1/types.go @@ -5219,7 +5219,7 @@ type SecurityContext struct { // readonly paths and masked paths. // This requires the ProcMountType feature flag to be enabled. // +optional - ProcMount *ProcMountType `json:"procMount,omitEmpty" protobuf:"bytes,9,opt,name=procMount"` + ProcMount *ProcMountType `json:"procMount,omitempty" protobuf:"bytes,9,opt,name=procMount"` } type ProcMountType string