2019-01-01 08:23:01 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-12-17 19:21:47 +00:00
|
|
|
TREE_STATE=clean
|
2019-01-01 08:23:01 +00:00
|
|
|
if [ -n "$(git status --porcelain --untracked-files=no)" ]; then
|
|
|
|
DIRTY="-dirty"
|
2019-12-17 19:21:47 +00:00
|
|
|
TREE_STATE=dirty
|
2019-01-01 08:23:01 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
COMMIT=$(git rev-parse --short HEAD)
|
2019-12-17 19:21:47 +00:00
|
|
|
LONG_COMMIT=$(git rev-parse HEAD)
|
|
|
|
|
2019-01-01 08:23:01 +00:00
|
|
|
GIT_TAG=${DRONE_TAG:-$(git tag -l --contains HEAD | head -n 1)}
|
|
|
|
|
2019-01-09 16:54:15 +00:00
|
|
|
ARCH=$(go env GOARCH)
|
|
|
|
SUFFIX="-${ARCH}"
|
2019-07-10 03:54:13 +00:00
|
|
|
|
2019-11-12 23:36:04 +00:00
|
|
|
VERSION_CONTAINERD=$(grep github.com/containerd/containerd go.mod | head -n1 | awk '{print $4}')
|
2019-09-20 01:46:26 +00:00
|
|
|
if [ -z "$VERSION_CONTAINERD" ]; then
|
|
|
|
VERSION_CONTAINERD="v0.0.0"
|
|
|
|
fi
|
|
|
|
|
2019-12-12 01:28:40 +00:00
|
|
|
VERSION_CRICTL=$(grep github.com/kubernetes-sigs/cri-tools go.mod | head -n1 | awk '{print $4}')
|
2019-09-20 01:46:26 +00:00
|
|
|
if [ -z "$VERSION_CRICTL" ]; then
|
|
|
|
VERSION_CRICTL="v0.0.0"
|
|
|
|
fi
|
2019-10-02 22:55:04 +00:00
|
|
|
|
2019-12-12 01:28:40 +00:00
|
|
|
VERSION_K8S=$(grep k8s.io/kubernetes go.mod | head -n1 | awk '{print $4}')
|
|
|
|
if [ -z "$VERSION_K8S" ]; then
|
|
|
|
VERSION_K8S="v0.0.0"
|
|
|
|
fi
|
|
|
|
|
2019-10-02 22:55:04 +00:00
|
|
|
VERSION_CNIPLUGINS="v0.7.6-k3s1"
|
2019-12-12 01:28:40 +00:00
|
|
|
|
|
|
|
if [[ -n "$GIT_TAG" ]]; then
|
|
|
|
VERSION=$GIT_TAG
|
|
|
|
else
|
2019-12-17 19:21:47 +00:00
|
|
|
VERSION="$(sed -e 's/[-+].*//' <<< "$VERSION_K8S")+$COMMIT$DIRTY"
|
2019-12-12 01:28:40 +00:00
|
|
|
fi
|
2019-12-18 06:29:05 +00:00
|
|
|
VERSION_TAG="$(sed -e 's/+/-/g' <<< "$VERSION")"
|