Interface SecretsRoleConfig
-
public interface SecretsRoleConfig
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanclusterWide()Whether the role is cluster wide or not.booleangenerate()If the current role is meant to be generated or not.Stringname()The name of the role.Optional<String>namespace()The namespace of the role.
-
-
-
Method Detail
-
name
@WithDefault("view-secrets") String name()The name of the role.
-
clusterWide
@WithDefault("false") boolean clusterWide()Whether the role is cluster wide or not. By default, it's not a cluster wide role.
-
generate
@WithDefault("true") boolean generate()If the current role is meant to be generated or not. If not, it will only be used to generate the role binding resource.
-
-