githubEdit

Deploying with Dynamo

Deploying Cedana + Dynamo

The good news is that Cedana just works with Dynamo! You can follow this guide on setting up Cedana on your Kubernetes cluster: Installation, and follow this to setup Dynamo on your cluster: https://docs.nvidia.com/dynamo/v1.0.1/kubernetes-deployment/deployment-guidearrow-up-right.

Dynamo requires another controller from the cedana side, so in your helm values.yml you'll need to add the following config:

# Only enable on clusters that have NVIDIA Dynamo (DynamoGraphDeployment CRD) installed.
dynamo:
  enabled: true
  image:
    repository: cedana/cedana-dynamo-watcher
    tag: main
    digest: # ignores tag if set
    imagePullPolicy: IfNotPresent
  resources: {}
  tolerations:
    - key: "cedana.ai/not-ready"
      operator: "Exists"
      effect: "NoSchedule"
  affinity: {}
  nodeSelector: {}
metricsService:
  ports:
    - name: https
      port: 8443
      protocol: TCP
      targetPort: https
  type: ClusterIP

Once set up, you can manage your dynamo deployment via our UI:

Last updated

Was this helpful?