Skip to content

Commit 4c6213d

Browse files
committed
chore: switch to 3.0.0 for master branch
revise version sleep 10s
1 parent ddeb6a8 commit 4c6213d

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export GOPATH GOBIN GO111MODULE DOCKER_CLI_EXPERIMENTAL
2626
include release-tools/build.make
2727
LDFLAGS = "-X ${PKG}/pkg/nfs.driverVersion=${IMAGE_VERSION} -s -w -extldflags '-static'"
2828
GIT_COMMIT ?= $(shell git rev-parse HEAD)
29-
IMAGE_VERSION ?= v0.5.0
29+
IMAGE_VERSION ?= v3.0.0
3030
# Use a custom version for E2E tests if we are testing in CI
3131
ifdef CI
3232
ifndef PUBLISH

pkg/nfs/nfs.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const (
5151
)
5252

5353
var (
54-
version = "2.0.0"
54+
version = "3.0.0"
5555
)
5656

5757
func NewNFSdriver(nodeID, endpoint string, perm *uint32) *Driver {

test/sanity/run-test.sh

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ function provision_nfs_server {
4343
apt-get update -y
4444
apt-get install -y nfs-common
4545
docker run -d --name nfs --privileged -p 2049:2049 -v $(pwd)/nfsshare:/nfsshare -e SHARED_DIRECTORY=/nfsshare itsthenetwork/nfs-server-alpine:latest
46+
sleep 10
4647
}
4748

4849
provision_nfs_server

0 commit comments

Comments
 (0)