Package io.quarkus.kubernetes.deployment
Enum SecurityContextConfig.PodFSGroupChangePolicy
- java.lang.Object
-
- java.lang.Enum<SecurityContextConfig.PodFSGroupChangePolicy>
-
- io.quarkus.kubernetes.deployment.SecurityContextConfig.PodFSGroupChangePolicy
-
- All Implemented Interfaces:
Serializable,Comparable<SecurityContextConfig.PodFSGroupChangePolicy>
- Enclosing class:
- SecurityContextConfig
public static enum SecurityContextConfig.PodFSGroupChangePolicy extends Enum<SecurityContextConfig.PodFSGroupChangePolicy>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AlwaysIt indicates that volume's ownership and permissions should always be changed whenever volume is mounted inside a Pod.OnRootMismatchIt indicates that volume's ownership and permissions will be changed only when permission and ownership of root directory does not match with expected permissions on the volume.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SecurityContextConfig.PodFSGroupChangePolicyvalueOf(String name)Returns the enum constant of this type with the specified name.static SecurityContextConfig.PodFSGroupChangePolicy[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OnRootMismatch
public static final SecurityContextConfig.PodFSGroupChangePolicy OnRootMismatch
It indicates that volume's ownership and permissions will be changed only when permission and ownership of root directory does not match with expected permissions on the volume.
-
Always
public static final SecurityContextConfig.PodFSGroupChangePolicy Always
It indicates that volume's ownership and permissions should always be changed whenever volume is mounted inside a Pod. This the default behavior.
-
-
Method Detail
-
values
public static SecurityContextConfig.PodFSGroupChangePolicy[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SecurityContextConfig.PodFSGroupChangePolicy c : SecurityContextConfig.PodFSGroupChangePolicy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SecurityContextConfig.PodFSGroupChangePolicy valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-