Skip to content

Commit

Permalink
chasing after bug with DOCKER_REMOTE_IMAGE value
Browse files Browse the repository at this point in the history
Signed-off-by: Maroun Touma <touma@us.ibm.com>
  • Loading branch information
touma-I committed Nov 17, 2024
1 parent b44fff1 commit 6631851
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions transforms/.make.workflows
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ FORCE:
cd ${REPOROOT} && make -C scripts/k8s-setup setup; \
fi
ifeq ($(USE_DEV_IMAGES), 1)
echo ******###**** $(DOCKER_REMOTE_IMAGE)
cd ${TRANSFORM_SRC} && $(MAKE) image && $(MAKE) kind-load-image
cd ${REPOROOT}/kfp/kfp_ray_components && $(MAKE) image && $(MAKE) kind-load-image
endif
Expand Down
5 changes: 3 additions & 2 deletions transforms/language/html2parquet/kfp_ray/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ TRANSFORM_RUNTIME=ray
## override settings in .make.default as they assume old structure with ray being the current folder
DOCKER_IMAGE_NAME=$(TRANSFORM_NAME)-$(TRANSFORM_RUNTIME)
DOCKER_LOCAL_IMAGE=$(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_VERSION)
DOCKER_REMOTE_IMAGE=$(DOCKER_REGISTRY_ENDPOINT)/$(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_VERSION)


# Only build the image with -f Dockerfile.ray
Expand Down Expand Up @@ -50,7 +49,9 @@ workflow-build: workflow-venv

.PHONY: workflow-test
workflow-test: workflow-build
$(MAKE) .workflows.test-pipeline TRANSFORM_SRC=${SRC_DIR} PIPELINE_FILE=html2parquet_wf.yaml
$(MAKE) TRANSFORM_SRC=${SRC_DIR} \
DOCKER_REMOTE_IMAGE=$(DOCKER_REGISTRY_ENDPOINT)/$(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_VERSION) \
PIPELINE_FILE=html2parquet_wf.yaml .workflows.test-pipeline

.PHONY: workflow-upload
workflow-upload:
Expand Down

0 comments on commit 6631851

Please sign in to comment.