Enum SecurityContextConfig.PodFSGroupChangePolicy

    • 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 name
        NullPointerException - if the argument is null