Skip to content
Open
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
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ LD_FLAGS_V2=" \
-X '${REPO_PATH}/pkg/version.GitSHA=${GitSHA}' \
-X '${REPO_PATH}/pkg/version.Built=${Date}' \
-X '${REPO_PATH}/pkg/version.Version=${RELEASE_VERSION}'"
REGISTRY?=docker.io/mpioperator
IMAGE_NAME?=${REGISTRY}/mpi-operator
REGISTRY?=ghcr.io/kubeflow/mpi-operator
IMAGE_NAME?=${REGISTRY}/controller
KUBEBUILDER_ASSETS_PATH := $(dir $(abspath $(firstword $(MAKEFILE_LIST))))bin/kubebuilder/bin
KIND_VERSION=v0.18.0
HELM_VERSION=v3.11.2
Expand Down
2 changes: 1 addition & 1 deletion manifests/base/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ spec:
containers:
- args:
- -alsologtostderr
image: mpioperator/mpi-operator:latest
image: ghcr.io/kubeflow/mpi-operator/controller:latest
name: mpi-operator
serviceAccountName: mpi-operator
4 changes: 2 additions & 2 deletions manifests/base/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ commonLabels:
app.kubernetes.io/name: mpi-operator
app.kubernetes.io/component: mpijob
images:
- name: mpioperator/mpi-operator
newName: mpioperator/mpi-operator
- name: ghcr.io/kubeflow/mpi-operator/controller
newName: ghcr.io/kubeflow/mpi-operator/controller
newTag: latest
4 changes: 2 additions & 2 deletions manifests/overlays/standalone/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ commonLabels:
app.kubernetes.io/name: mpi-operator
app.kubernetes.io/component: mpijob
images:
- name: mpioperator/mpi-operator
newName: mpioperator/mpi-operator
- name: ghcr.io/kubeflow/mpi-operator/controller
newName: ghcr.io/kubeflow/mpi-operator/controller
newTag: master
patches:
- target:
Expand Down
Loading