You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: deploy/utils/README.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,26 @@ This includes:
34
34
35
35
After setting up Dynamo Cloud, use this script to prepare your namespace with the additional resources needed for benchmarking and profiling workflows:
36
36
37
+
The setup script creates a `dynamo-pvc` with `ReadWriteMany` (RWX). If your cluster's default `storageClassName` does not support RWX, set `storageClassName` in `deploy/utils/manifests/pvc.yaml` to an RWX-capable class before running the script.
38
+
39
+
Example (add under `spec` in `deploy/utils/manifests/pvc.yaml`):
40
+
```yaml
41
+
...
42
+
spec:
43
+
accessModes:
44
+
- ReadWriteMany
45
+
storageClassName: <your-rwx-storageclass>
46
+
...
47
+
```
48
+
49
+
> [!TIP]
50
+
> **Check your clusters storage classes**
51
+
>
52
+
> - List storage classes and provisioners:
53
+
> ```bash
54
+
> kubectl get sc -o wide
55
+
>```
56
+
37
57
```bash
38
58
export NAMESPACE=your-dynamo-namespace
39
59
export HF_TOKEN=<HF_TOKEN># Optional: for HuggingFace model access
Copy file name to clipboardExpand all lines: docs/kubernetes/sla_planner_quickstart.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,8 @@ flowchart TD
39
39
Before deploying the SLA planner, ensure:
40
40
-**Dynamo platform installed** (see [Installation Guide](/docs/kubernetes/installation_guide.md))
41
41
-**[kube-prometheus-stack](/docs/kubernetes/metrics.md) installed and running.** By default, the prometheus server is not deployed in the `monitoring` namespace. If it is deployed to a different namespace, set `dynamo-operator.dynamo.metrics.prometheusEndpoint="http://prometheus-kube-prometheus-prometheus.<namespace>.svc.cluster.local:9090"`.
42
-
-**Benchmarking resources setup** (see [Kubernetes utilities for Dynamo Benchmarking and Profiling](../../deploy/utils/README.md)) The script will create a `dynamo-pvc` with `ReadWriteMany` access, if your cluster's default storageClassName does not allow `ReadWriteMany`, you need to specify a different storageClassName in `pvc.yaml`.
42
+
-**Benchmarking resources setup** (see [Kubernetes utilities for Dynamo Benchmarking and Profiling](../../deploy/utils/README.md)) The script will create a `dynamo-pvc` with `ReadWriteMany` access, if your cluster's default storageClassName does not allow `ReadWriteMany`, you need to specify a different storageClassName in `deploy/utils/manifests/pvc.yaml` which does support `ReadWriteMany`.
43
+
43
44
44
45
## Pre-Deployment Profiling
45
46
@@ -260,4 +261,4 @@ This is because the `subComponentType` field has only been added in newer versio
260
261
---
261
262
262
263
> [!TIP]
263
-
> **Need Help?** If you encounter issues, check the [troubleshooting section](#troubleshooting) or refer to the detailed guides linked in [Next Steps](#next-steps).
264
+
> **Need Help?** If you encounter issues, check the [troubleshooting section](#troubleshooting) or refer to the detailed guides linked in [Next Steps](#next-steps).
0 commit comments