Skip to content

Commit

Permalink
feat: add how to install odigos with custom docker registry with helm (
Browse files Browse the repository at this point in the history
…#1703)

Co-authored-by: Tamir David <[email protected]>
  • Loading branch information
tamirdavid1 and Tamir David authored Nov 7, 2024
1 parent 50a7e6c commit f221a48
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/setup/docker-registry.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,20 @@ If your Docker registry is private, configure your Kubernetes cluster to pull im
### Step 6: Install Odigos Using Custom Images
Finally, install Odigos using the images from your custom Docker registry:


<Tabs>
<Tab title="Odigos CLI">
```bash
odigos install --image-prefix=$CUSTOM_DOCKER_REGISTRY
```
</Tab>
<Tab title="Helm Chart">
```bash
helm repo update
helm upgrade --install odigos odigos/odigos --namespace odigos-system --create-namespace --set imagePrefix=$CUSTOM_DOCKER_REGISTRY
kubectl label namespace odigos-system odigos.io/system-object="true"
```
</Tab>

</Tabs>

0 comments on commit f221a48

Please sign in to comment.