We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba00b85 commit c8d9c10Copy full SHA for c8d9c10
examples/dynamic-lora-sidecar/README.md
@@ -36,6 +36,11 @@ The sidecar uses the vLLM server's API to load or unload adapters based on the c
36
```bash
37
kubectl create configmap name-of-your-configmap --from-file=your-file.yaml
38
3. **Mount the configmap and configure sidecar in your pod**
39
- ![example deployment][deployment]
+ ```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
45
46
[deployment]: deployment.yaml
0 commit comments