Package io.quarkus.kubernetes.deployment
Class ClusterRoleBindingConfig
- java.lang.Object
-
- io.quarkus.kubernetes.deployment.ClusterRoleBindingConfig
-
public class ClusterRoleBindingConfig extends Object
-
-
Field Summary
Fields Modifier and Type Field Description Map<String,String>labelsLabels to add into the RoleBinding resource.Optional<String>nameName of the ClusterRoleBinding resource to be generated.StringroleNameThe name of the ClusterRole resource to use by the RoleRef element in the generated ClusterRoleBinding resource.Map<String,SubjectConfig>subjectsList of subjects elements to use in the generated ClusterRoleBinding resource.
-
Constructor Summary
Constructors Constructor Description ClusterRoleBindingConfig()
-
-
-
Field Detail
-
name
@ConfigItem public Optional<String> name
Name of the ClusterRoleBinding resource to be generated. If not provided, it will use the application name plus the role ref name.
-
roleName
@ConfigItem public String roleName
The name of the ClusterRole resource to use by the RoleRef element in the generated ClusterRoleBinding resource.
-
subjects
@ConfigItem public Map<String,SubjectConfig> subjects
List of subjects elements to use in the generated ClusterRoleBinding resource.
-
-