@@ -190,3 +190,108 @@ After deploying the Dynamo cloud platform, you can:
...
@@ -190,3 +190,108 @@ After deploying the Dynamo cloud platform, you can:
3. Manage your deployments using the Dynamo CLI
3. Manage your deployments using the Dynamo CLI
For more detailed information about deploying inference graphs, see the [Dynamo Deploy Guide](README.md).
For more detailed information about deploying inference graphs, see the [Dynamo Deploy Guide](README.md).
### Installation using published helm chart
To install Dynamo Cloud using the published Helm chart, you'll need to configure Docker registry credentials and image settings. The chart supports both direct credential configuration and existing Kubernetes secrets.
#### Configuration Options
You have two options for providing Docker registry credentials:
**Option 1: Direct Credentials** (Simpler for testing)
- Provide username and password directly via Helm values
- Credentials are stored in a Kubernetes secret created by the chart
**Option 2: Existing Secret** (Recommended for production)
- Use an existing Kubernetes secret containing Docker registry credentials
- More secure and follows Kubernetes best practices
#### Environment Setup
Set the required environment variables:
```bash
# Docker registry configuration
export DOCKER_SERVER="your-registry.com"# Docker registry server where images of dynamo cloud services (api-server and operator) are available
export IMAGE_TAG="v1.0.0"# Image tag to deploy
export NAMESPACE="dynamo-cloud"# Target namespace
# Pipeline-specific Docker registry (can be different from DOCKER_SERVER)
export PIPELINES_DOCKER_SERVER="your-pipeline-registry.com"# Registry for pipeline images
# Option 1: Direct credentials
export PIPELINES_DOCKER_USERNAME="your-username"
export PIPELINES_DOCKER_PASSWORD="your-password"
# Option 2: Existing secret (recommended)
export PIPELINES_DOCKER_CREDS_SECRET="my-docker-secret"# Name of existing secret
# Note: If not specified, the chart will look for a secret named "dynamo-regcred"
# Image pull secret for the operator itself
export DOCKER_SECRET_NAME="my-pull-secret"# Secret for pulling images of dynamo cloud services (api-server and operator) operator images
```
you can easily create an image pull secret with the following command :