Installation Guide
Prerequisites
Before installing Prime EDM Helm charts, ensure you have:
- Kubernetes cluster running version 1.19 or later
- Helm 3.0 or later installed
- Access to the Prime EDM Helm repository
Adding the Repository
- Add the Prime EDM Helm repository:
bash
helm repo add prime-edm https://charts.acx-sandbox.net --username $USER --password $PASSWORD
- Update your local Helm chart repository cache:
bash
helm repo update
Installing Charts
Basic Installation
To install a chart with default values:
bash
helm install prime-edm prime-edm/prime-edm
Custom Configuration
- Download the default values:
bash
helm show values prime-edm/prime-edm > values.yaml
Modify the values file according to your requirements
Install with custom values:
bash
helm install prime-edm prime-edm/prime-edm -f values.yaml
Verification
Verify the installation:
bash
helm list
kubectl get pods
Upgrading
To upgrade an existing installation:
bash
helm upgrade prime-edm prime-edm/prime-edm -f values.yaml
Uninstalling
To remove the installation:
bash
helm uninstall prime-edm