Skip to content

Commit dd3759b

Browse files
committed
Update quay.io/devfile to quay.io/dkwon17
Signed-off-by: David Kwon <dakwon@redhat.com>
1 parent a15b55b commit dd3759b

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ ifndef VERBOSE
2222
endif
2323

2424
export NAMESPACE ?= devworkspace-controller
25-
export DWO_IMG ?= quay.io/devfile/devworkspace-controller:next
26-
export DWO_BUNDLE_IMG ?= quay.io/devfile/devworkspace-operator-bundle:next
27-
export DWO_INDEX_IMG ?= quay.io/devfile/devworkspace-operator-index:next
28-
export PROJECT_CLONE_IMG ?= quay.io/devfile/project-clone:next
25+
export DWO_IMG ?= quay.io/dkwon17/devworkspace-controller:next
26+
export DWO_BUNDLE_IMG ?= quay.io/dkwon17/devworkspace-operator-bundle:next
27+
export DWO_INDEX_IMG ?= quay.io/dkwon17/devworkspace-operator-index:next
28+
export PROJECT_CLONE_IMG ?= quay.io/dkwon17/project-clone:next
2929
export PULL_POLICY ?= Always
3030
export DEFAULT_ROUTING ?= basic
3131
export KUBECONFIG ?= ${HOME}/.kube/config
@@ -333,7 +333,7 @@ endif
333333
### _docker-check-push: Asks for confirmation before pushing the image, unless running in CI
334334
_docker-check-push:
335335
ifneq ($(INITIATOR),CI)
336-
ifeq ($(DWO_IMG),quay.io/devfile/devworkspace-controller:next)
336+
ifeq ($(DWO_IMG),quay.io/dkwon17/devworkspace-controller:next)
337337
@echo -n "Are you sure you want to push $(DWO_IMG)? [y/N] " && read ans && [ $${ans:-N} = y ]
338338
endif
339339
endif

build/scripts/build_index_image.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ ARCH="amd64"
99
ARCHITECTURES="linux/amd64,linux/arm64,linux/ppc64le,linux/s390x"
1010
DEBUG="false"
1111

12-
DEFAULT_BUNDLE_REPO="quay.io/devfile/devworkspace-operator-bundle"
12+
DEFAULT_BUNDLE_REPO="quay.io/dkwon17/devworkspace-operator-bundle"
1313
DEFAULT_BUNDLE_TAG="next"
14-
DEFAULT_INDEX_IMAGE="quay.io/devfile/devworkspace-operator-index:next"
15-
DEFAULT_RELEASE_INDEX_IMAGE="quay.io/devfile/devworkspace-operator-index:release"
14+
DEFAULT_INDEX_IMAGE="quay.io/dkwon17/devworkspace-operator-index:next"
15+
DEFAULT_RELEASE_INDEX_IMAGE="quay.io/dkwon17/devworkspace-operator-index:release"
1616
DEFAULT_BUILDER_NAME="dwo-multi-platform-builder"
1717

1818
error() {
@@ -121,10 +121,10 @@ fi
121121
BUNDLE_IMAGE="${BUNDLE_REPO}:${BUNDLE_TAG}"
122122

123123
# Check we're not accidentally pushing to the DWO repos
124-
if [ "$BUNDLE_REPO" == "quay.io/devfile/devworkspace-operator-bundle" ] && [ "$FORCE" != "true" ]; then
124+
if [ "$BUNDLE_REPO" == "quay.io/dkwon17/devworkspace-operator-bundle" ] && [ "$FORCE" != "true" ]; then
125125
echo -n "Are you sure you want to push $BUNDLE_IMAGE? [y/N] " && read -r ans && [ "${ans:-N}" = y ] || exit 1
126126
fi
127-
if [ "$INDEX_IMAGE" == "quay.io/devfile/devworkspace-operator-index" ] && [ "$FORCE" != "true" ]; then
127+
if [ "$INDEX_IMAGE" == "quay.io/dkwon17/devworkspace-operator-index" ] && [ "$FORCE" != "true" ]; then
128128
echo -n "Are you sure you want to push $INDEX_IMAGE? [y/N] " && read -r ans && [ "${ans:-N}" = y ] || exit 1
129129
fi
130130

build/scripts/generate_deployment.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ done
116116
if $USE_DEFAULT_ENV; then
117117
echo "Using defaults for environment variables"
118118
export NAMESPACE=devworkspace-controller
119-
export DWO_IMG=${DEFAULT_DWO_IMG:-"quay.io/devfile/devworkspace-controller:next"}
120-
export PROJECT_CLONE_IMG=${PROJECT_CLONE_IMG:-"quay.io/devfile/project-clone:next"}
119+
export DWO_IMG=${DEFAULT_DWO_IMG:-"quay.io/dkwon17/devworkspace-controller:next"}
120+
export PROJECT_CLONE_IMG=${PROJECT_CLONE_IMG:-"quay.io/dkwon17/project-clone:next"}
121121
export PULL_POLICY=Always
122122
export DEFAULT_ROUTING=basic
123123
export DEVWORKSPACE_API_VERSION=a6ec0a38307b63a29fad2eea945cc69bee97a683

0 commit comments

Comments
 (0)