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: "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir",
Description: `What type of storage medium should back this directory. The default is "" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir`,
720
-
Optional: true,
721
-
Default: "",
722
-
ForceNew: !isUpdatable,
723
-
ValidateFunc: validation.StringInSlice([]string{
724
-
string(corev1.StorageMediumDefault),
725
-
string(corev1.StorageMediumMemory),
726
-
}, false),
729
+
Type: schema.TypeString,
730
+
Description: fmt.Sprintf(`What type of storage medium should back this directory. The default is "" which means to use the node's default medium. Must be one of %q. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir`, validEmptyDirMediums),
0 commit comments