-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpush.sh
executable file
·49 lines (37 loc) · 1.32 KB
/
push.sh
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
#!/bin/bash
set -euo pipefail
cd "$(dirname "$0")"
TMP="tmp-cluster-controller-build"
REMOTE="registry.acl.fi/public/virt-controller"
DATE="$(date +%Y%m%d-%H%M%S)"
if [ "$(git status --porcelain)" == "" ]; then
CLEAN=true
else
CLEAN=false
fi
CACHE_DIR=".podman_cache"
if [[ -d ${CACHE_DIR} ]]; then
echo "Using $(readlink -f ${CACHE_DIR}) as cache"
[[ -d ${CACHE_DIR}/registry ]] || mkdir ${CACHE_DIR}/registry
[[ -d ${CACHE_DIR}/build ]] || mkdir ${CACHE_DIR}/build
PODMAN_BUILD_OPTS="-v ${PWD}/${CACHE_DIR}/registry:/usr/local/cargo/registry:Z -v ${PWD}/${CACHE_DIR}/build:/usr/src/cluster-controller/target:Z"
else
echo "Warning: Building without cache. Optimize compile times by running: ln -s \$(mktemp -d) .podman_cache"
fi
podman build ${PODMAN_BUILD_OPTS:-} -t "$TMP" .
version="$(podman run --rm tmp-cluster-controller-build cluster-controller --version)"
[ "$CLEAN" == "true" ] && podman tag "$TMP" "$REMOTE:$version"
podman tag "$TMP" "$REMOTE:$DATE"
podman tag "$TMP" "$REMOTE:latest"
[ "$CLEAN" == "true" ] && podman push "$REMOTE:$version"
podman push "$REMOTE:$DATE"
podman push "$REMOTE:latest"
if [ "$CLEAN" == "true" ]; then
IMG="$REMOTE:$version"
else
IMG="$REMOTE:$DATE"
fi
kubectl set image \
-n virt-controller \
deployment/cluster-controller \
cluster-controller="$IMG"