-
Notifications
You must be signed in to change notification settings - Fork 949
/
push
executable file
·67 lines (58 loc) · 1.63 KB
/
push
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/bin/bash
set -e
usage() {
cat << EOF
Usage: $0 [OPTIONS] [LABEL]
Push a newly-built image with the given LABEL to gcr.io and DockerHub.
Options:
-g, --gpu Push the image with GPU support.
-t, --tpu Push the image with GPU support.
-s, --source-image IMAGE Tag for the source image.
EOF
}
SOURCE_IMAGE_TAG='kaggle/python-build:latest'
SOURCE_IMAGE_TAG_OVERRIDE=''
TARGET_IMAGE='gcr.io/kaggle-images/python'
while :; do
case "$1" in
-h|--help)
usage
exit
;;
-g|--gpu)
SOURCE_IMAGE_TAG='kaggle/python-gpu-build:latest'
TARGET_IMAGE='gcr.io/kaggle-private-byod/python'
;;
-t|--tpu)
SOURCE_IMAGE_TAG='kaggle/python-tpuvm-build:latest'
TARGET_IMAGE='gcr.io/kaggle-private-byod/python-tpuvm'
;;
-s|--source-image)
if [[ -z $2 ]]; then
usage
printf 'ERROR: No IMAGE specified after the %s flag.\n' "$1" >&2
exit
fi
SOURCE_IMAGE_TAG_OVERRIDE=$2
shift # skip the flag value
;;
-?*)
usage
printf 'ERROR: Unknown option: %s\n' "$1" >&2
exit
;;
*)
break
esac
shift
done
LABEL=${1:-testing}
if [[ -n "$SOURCE_IMAGE_TAG_OVERRIDE" ]]; then
SOURCE_IMAGE_TAG="$SOURCE_IMAGE_TAG_OVERRIDE"
fi
readonly SOURCE_IMAGE_TAG
readonly TARGET_IMAGE
readonly LABEL
set -x
docker tag "${SOURCE_IMAGE_TAG}" "${TARGET_IMAGE}:${LABEL}"
gcloud docker -- push "${TARGET_IMAGE}:${LABEL}"