Creating a Service Account
This section describes how to create a new Service Account and RBAC or use an existing Service Account for Hive Metastore.
When you install and configure the Hive Metastore using the Helm chart, it does not create service account and RBAC.
To use an existing Service Account, set the following flags with
helm
install
command.--set serviceaccount.name=<name> --set serviceaccount.create=false
Alternativey, you can configure the service account options in values.yaml
file in the Helm chart.
To create a new Service Account, set the following flags with
helm install
command.--set serviceaccount.create=true
To create a new RBAC, set the following flags with
helm install
command.--set rbac.create=true