-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sh
executable file
·42 lines (31 loc) · 1.41 KB
/
build.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
#!/usr/bin/env bash
TAG=${1:-latest}
IMG="agill17/s3-operator"
echo "########################################################################################"
echo " BUILDING -> ${IMG}:${TAG}"
echo "########################################################################################"
set -e
# generate openapi and crds
operator-sdk0.15.2 generate openapi
# copy generated crd to chart
cp deploy/crds/agill.apps_s3s_crd.yaml chart/s3-operator/templates/
# set new version in charts values
sed -E -i "" "s~${IMG}:.*~${IMG}:${TAG}~g" chart/s3-operator/values.yaml
## go fmt
go fmt ./pkg/...
go fmt ./cmd/...
# build and push
operator-sdk0.15.2 build $IMG:$TAG && docker push $IMG:$TAG
if [[ $TAG != "latest" ]]
then
echo "########################################################################################"
echo " TAGGING LATEST IMAGE "
echo "########################################################################################"
docker tag $IMG:$TAG $IMG:latest
docker push $IMG:latest
fi
echo "########################################################################################"
echo " NEW CHANGES "
echo "########################################################################################"
# git diff
git --no-pager diff