Skip to content

Commit 31da2d6

Browse files
authored
Merge pull request kubeflow#2544 from saileshd1402/update-manifest-images-to-ghcr
Update Manifest Images to GHCR
2 parents 5840e81 + b53fc32 commit 31da2d6

File tree

29 files changed

+49
-49
lines changed

29 files changed

+49
-49
lines changed

.github/workflows/build-and-publish-images.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
with:
7676
image: |
7777
docker.io/kubeflow/${{ inputs.component-name }}
78-
ghcr.io/kubeflow/trainer/${{ inputs.component-name }}
78+
ghcr.io/kubeflow/training-v1/${{ inputs.component-name }}
7979
dockerfile: ${{ inputs.dockerfile }}
8080
platforms: ${{ inputs.platforms }}
8181
context: ${{ inputs.context }}
@@ -88,7 +88,7 @@ jobs:
8888
with:
8989
image: |
9090
docker.io/kubeflow/${{ inputs.component-name }}
91-
ghcr.io/kubeflow/trainer/${{ inputs.component-name }}
91+
ghcr.io/kubeflow/training-v1/${{ inputs.component-name }}
9292
dockerfile: ${{ inputs.dockerfile }}
9393
platforms: ${{ inputs.platforms }}
9494
context: ${{ inputs.context }}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Image URL to use all building/pushing image targets
2-
IMG ?= kubeflow/training-operator:latest
2+
IMG ?= ghcr.io/kubeflow/training-v1/training-operator:latest
33
# CRD generation options
44
CRD_OPTIONS ?= "crd:generateEmbeddedObjectMeta=true,maxDescLen=400"
55

examples/jax/cpu-demo/demo.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ spec:
1212
spec:
1313
containers:
1414
- name: jax
15-
image: docker.io/kubeflow/jaxjob-simple:latest
15+
image: ghcr.io/kubeflow/training-v1/jaxjob-simple:latest
1616
command:
1717
- "python3"
1818
- "train.py"

examples/jax/jax-dist-spmd-mnist/jaxjob_dist_spmd_mnist_gloo.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ spec:
1212
spec:
1313
containers:
1414
- name: jax
15-
image: docker.io/kubeflow/jaxjob-dist-spmd-mnist:latest
15+
image: ghcr.io/kubeflow/training-v1/jaxjob-dist-spmd-mnist:latest
1616
imagePullPolicy: Always

examples/pytorch/deepspeed-demo/pytorch_deepspeed_demo.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spec:
1111
spec:
1212
containers:
1313
- name: pytorch
14-
image: kubeflow/pytorch-deepspeed-demo:latest
14+
image: ghcr.io/kubeflow/training-v1/pytorch-deepspeed-demo:latest
1515
command:
1616
- torchrun
1717
- /train_bert_ds.py
@@ -27,7 +27,7 @@ spec:
2727
spec:
2828
containers:
2929
- name: pytorch
30-
image: kubeflow/pytorch-deepspeed-demo:latest
30+
image: ghcr.io/kubeflow/training-v1/pytorch-deepspeed-demo:latest
3131
command:
3232
- torchrun
3333
- /train_bert_ds.py

examples/pytorch/elastic/echo/echo.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
- name: pytorch
18-
image: kubeflow/pytorch-elastic-example-echo:latest
18+
image: ghcr.io/kubeflow/training-v1/pytorch-elastic-example-echo:latest
1919
imagePullPolicy: IfNotPresent
2020
env:
2121
- name: LOGLEVEL

examples/pytorch/elastic/imagenet/imagenet.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ spec:
2323
spec:
2424
containers:
2525
- name: pytorch
26-
image: kubeflow/pytorch-elastic-example-imagenet:latest
26+
image: ghcr.io/kubeflow/training-v1/pytorch-elastic-example-imagenet:latest
2727
imagePullPolicy: IfNotPresent
2828
resources:
2929
requests:

examples/pytorch/image-classification/create-pytorchjob.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
"\n",
122122
"container = V1Container(\n",
123123
" name=container_name,\n",
124-
" image=\"kubeflow/pytorch-dist-mnist:latest\",\n",
124+
" image=\"ghcr.io/kubeflow/training-v1/pytorch-dist-mnist:latest\",\n",
125125
" args=[\"--backend\", \"gloo\"],\n",
126126
")\n",
127127
"\n",

examples/pytorch/mnist/v1/pytorch_job_mnist_gloo.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spec:
1111
spec:
1212
containers:
1313
- name: pytorch
14-
image: kubeflow/pytorch-dist-mnist:latest
14+
image: ghcr.io/kubeflow/training-v1/pytorch-dist-mnist:latest
1515
args: ["--backend", "gloo"]
1616
# Comment out the below resources to use the CPU.
1717
resources:
@@ -24,7 +24,7 @@ spec:
2424
spec:
2525
containers:
2626
- name: pytorch
27-
image: kubeflow/pytorch-dist-mnist:latest
27+
image: ghcr.io/kubeflow/training-v1/pytorch-dist-mnist:latest
2828
args: ["--backend", "gloo"]
2929
# Comment out the below resources to use the CPU.
3030
resources:

examples/pytorch/mnist/v1/pytorch_job_mnist_mpi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spec:
1111
spec:
1212
containers:
1313
- name: pytorch
14-
image: kubeflow/pytorch-dist-mnist:latest
14+
image: ghcr.io/kubeflow/training-v1/pytorch-dist-mnist:latest
1515
args: ["--backend", "mpi"]
1616
# Comment out the below resources to use the CPU.
1717
resources:
@@ -24,7 +24,7 @@ spec:
2424
spec:
2525
containers:
2626
- name: pytorch
27-
image: kubeflow/pytorch-dist-mnist:latest
27+
image: ghcr.io/kubeflow/training-v1/pytorch-dist-mnist:latest
2828
args: ["--backend", "mpi"]
2929
# Comment out the below resources to use the CPU.
3030
resources:

0 commit comments

Comments
 (0)