We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 590ee45 commit 09ad3e3Copy full SHA for 09ad3e3
1 file changed
platform-operator/helm-pod/build-artifact.sh
@@ -8,14 +8,14 @@ artifacttype=$1
8
cd ../../
9
10
if [ "$artifacttype" = "latest" ]; then
11
- export GO111MODULE=on; export GOOS=linux; go build .
+ # export GO111MODULE=on; export GOOS=linux; go build .
12
docker build --no-cache -t gcr.io/cloudark-kubeplus/helm-pod:latest -f ./platform-operator/helm-pod/Dockerfile .
13
fi
14
15
if [ "$artifacttype" = "versioned" ]; then
16
version=`tail -1 versions.txt`
17
echo "Building version $version"
18
19
docker build -t gcr.io/cloudark-kubeplus/helm-pod:$version ./platform-operator/helm-pod/Dockerfile .
20
docker push gcr.io/cloudark-kubeplus/helm-pod:$version
21
0 commit comments