Skip to content

Commit cd48c75

Browse files
fix(helm) fix default values for cache deployment (#917)
Signed-off-by: enneitex <etienne.divet@gmail.com> Co-authored-by: Rui Zhang <51696593+ruizhang0101@users.noreply.github.com>
1 parent 7a9ed88 commit cd48c75

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

helm/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ This table documents all available configuration values for the Production Stack
303303
| Field | Type | Default | Description |
304304
|-------|------|---------|-------------|
305305
| `cacheserverSpec.enabled` | boolean | `false` | Whether to enable the cache server deployment |
306-
| `cacheserverSpec.image.repository` | string | `"lmcache/lmstack-cache-server"` | Docker image repository for the cache server |
306+
| `cacheserverSpec.image.repository` | string | `"lmcache/vllm-openai"` | Docker image repository for the cache server |
307307
| `cacheserverSpec.image.tag` | string | `"latest"` | Docker image tag for the cache server |
308308
| `cacheserverSpec.imagePullPolicy` | string | `"Always"` | Image pull policy for the cache server |
309309
| `cacheserverSpec.imagePullSecrets` | list | `[]` | Image pull secrets for private container registries |
@@ -319,7 +319,7 @@ This table documents all available configuration values for the Production Stack
319319
| `cacheserverSpec.runtimeClassName` | string | `""` | RuntimeClassName configuration for the cache server pods |
320320
| `cacheserverSpec.schedulerName` | string | `""` | SchedulerName configuration for the cache server pods |
321321
| `cacheserverSpec.securityContext` | map | `{}` | Pod-level security context configuration |
322-
| `cacheserverSpec.containerSecurityContext` | map | `{runAsNonRoot: false}` | Container-level security context configuration |
322+
| `cacheserverSpec.containerSecurityContext` | map | `{}` | Container-level security context configuration |
323323
| `cacheserverSpec.priorityClassName` | string | - | Priority class for cache server |
324324
| `cacheserverSpec.affinity` | map | - | (Optional) Affinity configuration. If specified, this takes precedence over `nodeSelectorTerms`. |
325325
| `cacheserverSpec.nodeSelector` | map | - | (Optional) nodeSelector for the cache pods. |

helm/values.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ cacheserverSpec:
732732
# -- Image configuration for the cache Server
733733
image:
734734
# -- Docker image repository for the cache server
735-
repository: "lmcache/lmstack-cache-server"
735+
repository: "lmcache/vllm-openai"
736736
# -- Docker image tag for the cache server
737737
tag: "latest"
738738
# -- Image pull policy for the cache server
@@ -781,10 +781,8 @@ cacheserverSpec:
781781
schedulerName: ""
782782
# -- Pod-level security context configuration
783783
securityContext: {}
784-
# @schema skipProperties:true
785784
# -- Container-level security context configuration
786-
containerSecurityContext:
787-
runAsNonRoot: false
785+
containerSecurityContext: {}
788786
# -- Priority class for the cache server pods
789787
priorityClassName: ""
790788
# -- Node selector for the cache server pods

0 commit comments

Comments
 (0)