Run Commands

Register a Cluster via Helm

Learn how to register a pachd cluster to your Enterprise Server using Helm.

December 4, 2023

Before You Start #

How to Register a Cluster #

  1. Open your Helm values.yml file.
  2. Update the pachd section with the following attributes:
pachd:
  activateEnterpriseMember: true
	enterpriseServerAddress: "grpc://<ENTERPRISE_SERVER_ADDRESS>"
	enterpriseCallbackAddress: "grpc://<PACHD_ADDRESS>"
	enterpriseServerToken: "<ENTERPRISE-SERVER-TOKEN>" # the same root token of the enterprise cluster
# Alternatively, use a secret
enterpriseServerTokenSecretName: "<Name of you secret containing enterpriseServerToken>" 
  1. Upgrade the cluster:
helm upgrade pachyderm pachyderm/pachyderm -f values.yml