diff --git a/client/cluster/v3/zz_generated_host_path_volume_source.go b/client/cluster/v3/zz_generated_host_path_volume_source.go index cbeffd33..a7471bff 100644 --- a/client/cluster/v3/zz_generated_host_path_volume_source.go +++ b/client/cluster/v3/zz_generated_host_path_volume_source.go @@ -2,11 +2,11 @@ package client const ( HostPathVolumeSourceType = "hostPathVolumeSource" + HostPathVolumeSourceFieldKind = "kind" HostPathVolumeSourceFieldPath = "path" - HostPathVolumeSourceFieldType = "type" ) type HostPathVolumeSource struct { + Kind string `json:"kind,omitempty" yaml:"kind,omitempty"` Path string `json:"path,omitempty" yaml:"path,omitempty"` - Type string `json:"type,omitempty" yaml:"type,omitempty"` }