File tree Expand file tree Collapse file tree 5 files changed +8
-13
lines changed Expand file tree Collapse file tree 5 files changed +8
-13
lines changed Original file line number Diff line number Diff line change 1
-
2
1
# Copyright 2023 The Kubeflow Authors
3
2
#
4
3
# Licensed under the Apache License, Version 2.0 (the "License");
Original file line number Diff line number Diff line change @@ -67,25 +67,25 @@ image_all: image_apiserver image_persistence_agent image_cache image_swf image_v
67
67
68
68
.PHONY : image_apiserver
69
69
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 .
71
71
.PHONY : image_persistence_agent
72
72
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 .
74
74
.PHONY : image_cache
75
75
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
78
78
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 .
80
80
.PHONY : image_viewer
81
81
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 .
83
83
.PHONY : image_visualization
84
84
image_visualization :
85
85
cd $(MOD_ROOT ) && ${CONTAINER_ENGINE} build -t ${IMG_TAG_VISUALIZATION} -f backend/Dockerfile.visualization .
86
86
.PHONY : image_driver
87
87
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 .
89
89
.PHONY : image_launcher
90
90
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 .
Original file line number Diff line number Diff line change 1
-
2
1
# Copyright 2021 The Kubeflow Authors
3
2
#
4
3
# Licensed under the Apache License, Version 2.0 (the "License");
Original file line number Diff line number Diff line change 1
-
2
1
#! /bin/bash
3
2
#
4
3
# Copyright 2020 The Kubeflow Authors
@@ -50,7 +49,6 @@ export PATH="$HOME/bin:$PATH"
50
49
chmod +x " $HOME /bin/kubectl"
51
50
} || true
52
51
53
-
54
52
# This should fail if there are connectivity problems
55
53
# Gotcha: Listing all objects requires list permission,
56
54
# but when listing a single oblect kubectl will fail if it's not found
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ RUN sh /third_party/download_source.sh </third_party/minio/repo-MPL.txt
23
23
24
24
25
25
# Minio image
26
- # Minio image compatible with s390x and ppc64le
27
26
FROM minio/minio:RELEASE.2020-12-18T03-27-42Z
28
27
29
28
# Copy concatenated license file
You can’t perform that action at this time.
0 commit comments