Skip to content

Commit b573e98

Browse files
committed
Made the requested changes
Signed-off-by: Rehan Khan <Rehan.Khan7@ibm.com>
1 parent 5d47c2e commit b573e98

File tree

5 files changed

+8
-13
lines changed

5 files changed

+8
-13
lines changed

backend/Dockerfile.launcher

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# Copyright 2023 The Kubeflow Authors
32
#
43
# Licensed under the Apache License, Version 2.0 (the "License");

backend/Makefile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67,25 +67,25 @@ image_all: image_apiserver image_persistence_agent image_cache image_swf image_v
6767

6868
.PHONY: image_apiserver
6969
image_apiserver:
70-
cd $(MOD_ROOT) && ${CONTAINER_ENGINE} buildx build --platform $(PLATFORMS) -t ${IMG_TAG_APISERVER} -f backend/Dockerfile --push .
70+
cd $(MOD_ROOT) && ${CONTAINER_ENGINE} buildx build --platform $(PLATFORMS) -t ${IMG_TAG_APISERVER} -f backend/Dockerfile .
7171
.PHONY: image_persistence_agent
7272
image_persistence_agent:
73-
cd $(MOD_ROOT) && ${CONTAINER_ENGINE} buildx build --platform $(PLATFORMS) -t ${IMG_TAG_PERSISTENCEAGENT} -f backend/Dockerfile.persistenceagent --push .
73+
cd $(MOD_ROOT) && ${CONTAINER_ENGINE} buildx build --platform $(PLATFORMS) -t ${IMG_TAG_PERSISTENCEAGENT} -f backend/Dockerfile.persistenceagent .
7474
.PHONY: image_cache
7575
image_cache:
76-
cd $(MOD_ROOT) && ${CONTAINER_ENGINE} buildx build --platform $(PLATFORMS) -t ${IMG_TAG_CACHESERVER} -f backend/Dockerfile.cacheserverbuildx build --platform $(PLATFORMS)
77-
.PHONY: image_swf
76+
cd $(MOD_ROOT) && ${CONTAINER_ENGINE} buildx build --platform $(PLATFORMS) -t ${IMG_TAG_CACHESERVER} -f backend/Dockerfile.cacheserver .
77+
.PHONY: image_swf
7878
image_swf:
79-
cd $(MOD_ROOT) && ${CONTAINER_ENGINE} buildx build --platform $(PLATFORMS) -t ${IMG_TAG_SCHEDULEDWORKFLOW} -f backend/Dockerfile.scheduledworkflow --push .
79+
cd $(MOD_ROOT) && ${CONTAINER_ENGINE} buildx build --platform $(PLATFORMS) -t ${IMG_TAG_SCHEDULEDWORKFLOW} -f backend/Dockerfile.scheduledworkflow .
8080
.PHONY: image_viewer
8181
image_viewer:
82-
cd $(MOD_ROOT) && ${CONTAINER_ENGINE} buildx build --platform $(PLATFORMS) -t ${IMG_TAG_VIEWERCONTROLLER} -f backend/Dockerfile.viewercontroller --push .
82+
cd $(MOD_ROOT) && ${CONTAINER_ENGINE} buildx build --platform $(PLATFORMS) -t ${IMG_TAG_VIEWERCONTROLLER} -f backend/Dockerfile.viewercontroller .
8383
.PHONY: image_visualization
8484
image_visualization:
8585
cd $(MOD_ROOT) && ${CONTAINER_ENGINE} build -t ${IMG_TAG_VISUALIZATION} -f backend/Dockerfile.visualization .
8686
.PHONY: image_driver
8787
image_driver:
88-
cd $(MOD_ROOT) && ${CONTAINER_ENGINE} buildx build --platform $(PLATFORMS) -t ${IMG_TAG_DRIVER} -f backend/Dockerfile.driver --push .
88+
cd $(MOD_ROOT) && ${CONTAINER_ENGINE} buildx build --platform $(PLATFORMS) -t ${IMG_TAG_DRIVER} -f backend/Dockerfile.driver .
8989
.PHONY: image_launcher
9090
image_launcher:
91-
cd $(MOD_ROOT) && ${CONTAINER_ENGINE} buildx build --platform $(PLATFORMS)-t ${IMG_TAG_LAUNCHER} -f backend/Dockerfile.launcher --push .
91+
cd $(MOD_ROOT) && ${CONTAINER_ENGINE} buildx build --platform $(PLATFORMS)-t ${IMG_TAG_LAUNCHER} -f backend/Dockerfile.launcher .

backend/api/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# Copyright 2021 The Kubeflow Authors
32
#
43
# Licensed under the Apache License, Version 2.0 (the "License");

backend/src/cache/deployer/deploy-cache-service.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
#!/bin/bash
32
#
43
# Copyright 2020 The Kubeflow Authors
@@ -50,7 +49,6 @@ export PATH="$HOME/bin:$PATH"
5049
chmod +x "$HOME/bin/kubectl"
5150
} || true
5251

53-
5452
# This should fail if there are connectivity problems
5553
# Gotcha: Listing all objects requires list permission,
5654
# but when listing a single oblect kubectl will fail if it's not found

third_party/minio/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ RUN sh /third_party/download_source.sh </third_party/minio/repo-MPL.txt
2323

2424

2525
# Minio image
26-
# Minio image compatible with s390x and ppc64le
2726
FROM minio/minio:RELEASE.2020-12-18T03-27-42Z
2827

2928
# Copy concatenated license file

0 commit comments

Comments
 (0)