Package io.quarkus.kubernetes.deployment
Class SubjectConfig
- java.lang.Object
-
- io.quarkus.kubernetes.deployment.SubjectConfig
-
public class SubjectConfig extends Object
-
-
Field Summary
Fields Modifier and Type Field Description Optional<String>apiGroupThe "apiGroup" resource that matches with the "kind" property.StringkindThe "kind" resource to use by the Subject element in the generated Role Binding resource.Optional<String>nameThe "name" resource to use by the Subject element in the generated Role Binding resource.Optional<String>namespaceThe "namespace" resource to use by the Subject element in the generated Role Binding resource.
-
Constructor Summary
Constructors Constructor Description SubjectConfig()
-
-
-
Field Detail
-
name
@ConfigItem public Optional<String> name
The "name" resource to use by the Subject element in the generated Role Binding resource.
-
kind
@ConfigItem(defaultValue="ServiceAccount") public String kind
The "kind" resource to use by the Subject element in the generated Role Binding resource. By default, it uses the "ServiceAccount" kind.
-
apiGroup
@ConfigItem public Optional<String> apiGroup
The "apiGroup" resource that matches with the "kind" property. By default, it's empty.
-
-