Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/dynamo_model_cache_k8s/agg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ spec:
runAsGroup: 1000
fsGroup: 1000
mainContainer:
image: nvcr.io/nvidia/ai-dynamo/modelexpress-server:0.3.0
image: nvcr.io/nvidia/ai-dynamo/modelexpress-server:0.4.0
imagePullPolicy: IfNotPresent
env:
- name: MODEL_EXPRESS_SERVER_PORT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ spec:
extraPodSpec:
serviceAccountName: modelexpress
mainContainer:
image: nvcr.io/nvidia/ai-dynamo/modelexpress-server:0.3.0
image: nvcr.io/nvidia/ai-dynamo/modelexpress-server:0.4.0
command:
- /bin/sh
- -c
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ spec:
extraPodSpec:
serviceAccountName: modelexpress
mainContainer:
image: nvcr.io/nvidia/ai-dynamo/modelexpress-server:0.3.0
image: nvcr.io/nvidia/ai-dynamo/modelexpress-server:0.4.0
command:
- /bin/sh
- -c
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ spec:
effect: NoExecute
containers:
- name: server
image: nvcr.io/nvidia/ai-dynamo/modelexpress-server:0.3.0
image: nvcr.io/nvidia/ai-dynamo/modelexpress-server:0.4.0
ports:
- containerPort: 8001
env:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
serviceAccountName: modelexpress
containers:
- name: modelexpress-server
image: nvcr.io/nvidia/ai-dynamo/modelexpress-server:0.3.0
image: nvcr.io/nvidia/ai-dynamo/modelexpress-server:0.4.0
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8001
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ spec:

containers:
- name: modelexpress-server
image: nvcr.io/nvidia/ai-dynamo/modelexpress-server:0.3.0
image: nvcr.io/nvidia/ai-dynamo/modelexpress-server:0.4.0
imagePullPolicy: Always
ports:
- containerPort: 8001
Expand Down
4 changes: 2 additions & 2 deletions helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ The following table lists the configurable parameters of the ModelExpress chart
| `replicaCount` | Number of ModelExpress replicas | `1` |
| `image.repository` | ModelExpress image repository | `nvcr.io/nvidia/ai-dynamo/modelexpress-server` |
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `image.tag` | ModelExpress image tag | `0.3.0` |
| `image.tag` | ModelExpress image tag | `0.4.0` |
| `imagePullSecrets` | Image pull secrets for nvcr.io access | `[]` |
| `nameOverride` | Override the chart name | `""` |
| `fullnameOverride` | Override the full app name | `""` |
Expand Down Expand Up @@ -295,7 +295,7 @@ The Helm chart uses the official NVIDIA ModelExpress image from the NVIDIA Conta
docker login nvcr.io -u '$oauthtoken' -p 'YOUR_NVCR_API_KEY'

# Pull the image
docker pull nvcr.io/nvidia/ai-dynamo/modelexpress-server:0.3.0
docker pull nvcr.io/nvidia/ai-dynamo/modelexpress-server:0.4.0
```

**Note:** The default image requires authentication. See the [Installation](#installation) section for creating the required Kubernetes secret.
Expand Down
2 changes: 1 addition & 1 deletion helm/test-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ replicaCount: 1
image:
repository: nvcr.io/nvidia/ai-dynamo/modelexpress-server
pullPolicy: IfNotPresent
tag: "0.3.0"
tag: "0.4.0"

serviceAccount:
create: true
Expand Down
2 changes: 1 addition & 1 deletion helm/values-development.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ replicaCount: 1
image:
repository: nvcr.io/nvidia/ai-dynamo/modelexpress-server
pullPolicy: IfNotPresent
tag: "0.3.0"
tag: "0.4.0"

serviceAccount:
create: true
Expand Down
2 changes: 1 addition & 1 deletion helm/values-production.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ replicaCount: 3
image:
repository: nvcr.io/nvidia/ai-dynamo/modelexpress-server
pullPolicy: Always
tag: "0.3.0"
tag: "0.4.0"

serviceAccount:
create: true
Expand Down
2 changes: 1 addition & 1 deletion helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ replicaCount: 1
image:
repository: nvcr.io/nvidia/ai-dynamo/modelexpress-server
pullPolicy: IfNotPresent
tag: "0.3.0"
tag: "0.4.0"

imagePullSecrets:
- name: nvcr-secret
Expand Down
Loading