diff --git a/test/deploy-pipeline.sh b/test/deploy-pipeline.sh index 6ce3e39e7a87..2c8011256d37 100755 --- a/test/deploy-pipeline.sh +++ b/test/deploy-pipeline.sh @@ -47,7 +47,7 @@ cd ${DIR}/${KFAPP} ## Update pipeline component image pushd ks_app -ks param set pipeline apiImage ${GCR_IMAGE_BASE_DIR}/api:${GCR_IMAGE_TAG} +ks param set pipeline apiImage ${GCR_IMAGE_BASE_DIR}/api-server:${GCR_IMAGE_TAG} ks param set pipeline persistenceAgentImage ${GCR_IMAGE_BASE_DIR}/persistenceagent:${GCR_IMAGE_TAG} ks param set pipeline scheduledWorkflowImage ${GCR_IMAGE_BASE_DIR}/scheduledworkflow:${GCR_IMAGE_TAG} ks param set pipeline uiImage ${GCR_IMAGE_BASE_DIR}/frontend:${GCR_IMAGE_TAG} diff --git a/test/presubmit-tests-with-pipeline-deployment.sh b/test/presubmit-tests-with-pipeline-deployment.sh index 1b0ecc108882..0ab9438d64db 100755 --- a/test/presubmit-tests-with-pipeline-deployment.sh +++ b/test/presubmit-tests-with-pipeline-deployment.sh @@ -75,7 +75,7 @@ source "${DIR}/install-argo.sh" echo "submitting argo workflow to build docker images for commit ${PULL_PULL_SHA}..." ARGO_WORKFLOW=`argo submit ${DIR}/build_image.yaml \ -p image-build-context-gcs-uri="$remote_code_archive_uri" \ --p api-image="${GCR_IMAGE_BASE_DIR}/api" \ +-p api-image="${GCR_IMAGE_BASE_DIR}/api-server" \ -p frontend-image="${GCR_IMAGE_BASE_DIR}/frontend" \ -p scheduledworkflow-image="${GCR_IMAGE_BASE_DIR}/scheduledworkflow" \ -p persistenceagent-image="${GCR_IMAGE_BASE_DIR}/persistenceagent" \