Skip to content

Commit cbae028

Browse files
committed
chore: update tags for 0.8.1
Signed-off-by: pvijayakrish <pvijayakrish@nvidia.com>
1 parent edbbf44 commit cbae028

File tree

79 files changed

+187
-187
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+187
-187
lines changed

Earthfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ dynamo-build:
134134

135135
dynamo-base-docker:
136136
ARG IMAGE=dynamo-base-docker
137-
ARG DOCKER_SERVER=my-registry
137+
ARG DOCKER_SERVER=
138138
ARG IMAGE_TAG=latest
139139

140140
FROM ubuntu:24.04
@@ -175,7 +175,7 @@ all-test:
175175
BUILD ./deploy/cloud/operator+test
176176

177177
all-docker:
178-
ARG DOCKER_SERVER=my-registry
178+
ARG DOCKER_SERVER=
179179
ARG IMAGE_TAG=latest
180180
BUILD ./deploy/cloud/operator+docker --DOCKER_SERVER=$DOCKER_SERVER --IMAGE_TAG=$IMAGE_TAG
181181

@@ -189,6 +189,6 @@ all:
189189

190190
# For testing
191191
custom:
192-
ARG DOCKER_SERVER=my-registry
192+
ARG DOCKER_SERVER=
193193
ARG IMAGE_TAG=latest
194194
BUILD +all-test
52 KB
Binary file not shown.

benchmarks/incluster/benchmark_job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
containers:
1818
- name: benchmark-runner
1919
# TODO: update to latest public image in next release
20-
image: nvcr.io/nvidia/ai-dynamo/vllm-runtime:my-tag
20+
image: nvcr.io/nvidia/ai-dynamo/vllm-runtime:0.8.1
2121
securityContext:
2222
allowPrivilegeEscalation: false
2323
capabilities:

benchmarks/profiler/deploy/profile_sla_aic_dgdr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ spec:
1212

1313
# ProfilingConfig maps directly to the profile_sla.py config format
1414
profilingConfig:
15-
profilerImage: "nvcr.io/nvidia/ai-dynamo/tensorrtllm-runtime:my-tag"
15+
profilerImage: "nvcr.io/nvidia/ai-dynamo/tensorrtllm-runtime:0.8.1"
1616

1717
# NOTE: any image built before January 10 and any release prior to 0.8.1
1818
# will need to use snake_case within profilingConfig.config
@@ -26,5 +26,5 @@ spec:
2626
ttft: 500.0
2727
itl: 30.0
2828
deploymentOverrides:
29-
workersImage: "nvcr.io/nvidia/ai-dynamo/tensorrtllm-runtime:my-tag"
29+
workersImage: "nvcr.io/nvidia/ai-dynamo/tensorrtllm-runtime:0.8.1"
3030
autoApply: true

benchmarks/profiler/deploy/profile_sla_dgdr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ spec:
1212

1313
# ProfilingConfig maps directly to the profile_sla.py config format
1414
profilingConfig:
15-
profilerImage: "nvcr.io/nvidia/ai-dynamo/vllm-runtime:my-tag"
15+
profilerImage: "nvcr.io/nvidia/ai-dynamo/vllm-runtime:0.8.1"
1616

1717
# NOTE: any image built before January 10 and any release prior to 0.8.1
1818
# will need to use snake_case within profilingConfig.config
@@ -25,5 +25,5 @@ spec:
2525
ttft: 200.0
2626
itl: 20.0
2727
deploymentOverrides:
28-
workersImage: "nvcr.io/nvidia/ai-dynamo/vllm-runtime:my-tag"
28+
workersImage: "nvcr.io/nvidia/ai-dynamo/vllm-runtime:0.8.1"
2929
autoApply: true

benchmarks/profiler/deploy/profile_sla_moe_dgdr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313

1414
# ProfilingConfig maps directly to the profile_sla.py config format
1515
profilingConfig:
16-
profilerImage: "nvcr.io/nvidia/ai-dynamo/sglang-runtime:my-tag"
16+
profilerImage: "nvcr.io/nvidia/ai-dynamo/sglang-runtime:0.8.1"
1717

1818
# NOTE: any image built before January 10 and any release prior to 0.8.1
1919
# will need to use snake_case within profilingConfig.config
@@ -47,6 +47,6 @@ spec:
4747
key: tep16p-dep16d-disagg.yaml
4848

4949
deploymentOverrides:
50-
workersImage: "nvcr.io/nvidia/ai-dynamo/sglang-runtime:my-tag"
50+
workersImage: "nvcr.io/nvidia/ai-dynamo/sglang-runtime:0.8.1"
5151
autoApply: true
5252

benchmarks/profiler/utils/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class DgdPlannerServiceConfig(BaseModel):
9797
replicas: int = 1
9898
extraPodSpec: PodSpec = PodSpec(
9999
mainContainer=Container(
100-
image="my-registry/dynamo-runtime:my-tag", # placeholder
100+
image="/dynamo-runtime:0.8.1", # placeholder
101101
workingDir=f"{get_workspace_dir()}/components/src/dynamo/planner",
102102
command=["python3", "-m", "dynamo.planner.planner_sla"],
103103
args=[],

deploy/cloud/operator/Earthfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ test:
4545
SAVE ARTIFACT cover.out
4646

4747
docker:
48-
ARG DOCKER_SERVER=my-registry
48+
ARG DOCKER_SERVER=
4949
ARG IMAGE_TAG=latest
5050
ARG IMAGE_SUFFIX=dynamo-operator
5151
FROM nvcr.io/nvidia/distroless/go:v3.1.13

deploy/cloud/operator/internal/secrets/docker_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ func TestDockerSecretIndexer_RefreshIndex(t *testing.T) {
2121
},
2222
Type: corev1.SecretTypeDockerConfigJson,
2323
Data: map[string][]byte{
24-
".dockerconfigjson": []byte(`{"auths":{"docker.io":{}, "my-registry.com:5005/registry1":{}}}`),
24+
".dockerconfigjson": []byte(`{"auths":{"docker.io":{}, ".com:5005/registry1":{}}}`),
2525
},
2626
},
2727
{
@@ -31,7 +31,7 @@ func TestDockerSecretIndexer_RefreshIndex(t *testing.T) {
3131
},
3232
Type: corev1.SecretTypeDockerConfigJson,
3333
Data: map[string][]byte{
34-
".dockerconfigjson": []byte(`{"auths":{"my-registry.com:5005/registry2":{}}}`),
34+
".dockerconfigjson": []byte(`{"auths":{".com:5005/registry2":{}}}`),
3535
},
3636
},
3737
{
@@ -41,7 +41,7 @@ func TestDockerSecretIndexer_RefreshIndex(t *testing.T) {
4141
},
4242
Type: corev1.SecretTypeDockerConfigJson,
4343
Data: map[string][]byte{
44-
".dockerconfigjson": []byte(`{"auths":{"my-registry.com:5005/registry2":{}}}`),
44+
".dockerconfigjson": []byte(`{"auths":{".com:5005/registry2":{}}}`),
4545
},
4646
},
4747
}
@@ -68,7 +68,7 @@ func TestDockerSecretIndexer_RefreshIndex(t *testing.T) {
6868
t.Errorf("DockerSecretIndexer.GetSecrets() = %v, want %v", secrets[0], "secret1")
6969
}
7070

71-
secrets, err = i.GetSecrets("default", "my-registry.com:5005")
71+
secrets, err = i.GetSecrets("default", ".com:5005")
7272
if err != nil {
7373
t.Errorf("DockerSecretIndexer.GetSecrets() error = %v, wantErr %v", err, nil)
7474
}
@@ -82,7 +82,7 @@ func TestDockerSecretIndexer_RefreshIndex(t *testing.T) {
8282
t.Errorf("DockerSecretIndexer.GetSecrets() = %v, want %v", secrets[1], "secret2")
8383
}
8484

85-
secrets, err = i.GetSecrets("another-namespace", "my-registry.com:5005")
85+
secrets, err = i.GetSecrets("another-namespace", ".com:5005")
8686
if err != nil {
8787
t.Errorf("DockerSecretIndexer.GetSecrets() error = %v, wantErr %v", err, nil)
8888
}

deploy/cloud/pre-deployment/nixl/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ Interactive script that provides flexible build and deployment workflow:
286286

287287
### nixlbench-deployment.yaml
288288
Base Kubernetes deployment template that gets customized by the script:
289-
- **Template image**: `my-registry/nixlbench:version-arch`
289+
- **Template image**: `/nixlbench:version-arch`
290290
- **Resource allocation**: 10 CPU, 5Gi memory, 1 GPU per pod
291291
- **ETCD integration**: Pre-configured environment variables
292292
- **Benchmark command**: Runs with VRAM segment configuration

0 commit comments

Comments
 (0)