Setup Kubernetes Components

Add e6data Helm Charts Repository

The Helm chart creates a service account that the e6data cluster will use to leverage SERVICE ACCOUNT authentication and obtain read permissions to access the data buckets. It also creates roles and role bindings in the GKE cluster for the e6data control plane.

These roles and role bindings define the permissions and access levels for the control plane user within the cluster, allowing it to perform specific actions and interact with resources as required by the e6data workspace.

helm repo add e6data https://e6x-labs.github.io/helm-charts/
helm repo update

Edit values.yaml

  1. Navigate to ./helm-charts/charts/workspace/

  2. Open the values.yaml file

  3. Replace <WORKSPACE_SERVICEACCOUNT_EMAIL> with the email of the service account created previously.

  4. Replace <WORKSPACE_NAME> with the name of e6data workspace you will be creating.

  5. <CONTROL_PLANE_USER> - OAuth 2 client ID of the e6data control plane serviceaccount (please contact e6data for this value)

  6. Save the edited values.yaml file

cloud:
  type: "GCP"
  oidc_value: <WORKSPACE_SERVICEACCOUNT_EMAIL>
  control_plane_user: ["<CONTROL_PLANE_USER>"]

Please make note of the Workspace Name, it will be required when creating the Workspace in the e6data Console:

Run Helm Charts

helm upgrade -i -f /path/to/your/helm/values.yaml -n <KUBERNETES_NAMESPACE> <WORKSPACE_NAME> --version "2.0.8" e6x-labs/workspace

When the Helm chart finishes running, proceed to the e6data Console to create a Workspace.

Last updated