# 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](https://docs.cedana.ai/cedana-kubernetes/installation "mention"), and follow this to setup Dynamo on your cluster: <https://docs.nvidia.com/dynamo/v1.0.1/kubernetes-deployment/deployment-guide>.&#x20;

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

```
# 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:&#x20;

<figure><img src="https://3970289663-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F2VUqakyWqaX9NCnQNYjD%2Fuploads%2FY5i0QT3X9fWhKChSPcJJ%2Fimage.png?alt=media&#x26;token=dd074cc2-f320-434e-ae44-c38111cfb86d" alt=""><figcaption></figcaption></figure>
