Skip to content

Commit c8d9c10

Browse files
committed
Add warning about using subPath
Signed-off-by: Kunjan Patel <[email protected]>
1 parent ba00b85 commit c8d9c10

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

examples/dynamic-lora-sidecar/README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ The sidecar uses the vLLM server's API to load or unload adapters based on the c
3636
```bash
3737
kubectl create configmap name-of-your-configmap --from-file=your-file.yaml
3838
3. **Mount the configmap and configure sidecar in your pod**
39-
![example deployment][deployment]
39+
```yaml
40+
volumeMounts: # DO NOT USE subPath
41+
- name: config-volume
42+
mountPath: /config
43+
```
44+
Do not use subPath, since configmap updates are not reflected in the file
4045

4146
[deployment]: deployment.yaml

0 commit comments

Comments
 (0)