diff --git a/.github/workflows/integration-test-nfs-suite.yaml b/.github/workflows/integration-test-nfs-suite.yaml index 49ba9341a..059494cf0 100644 --- a/.github/workflows/integration-test-nfs-suite.yaml +++ b/.github/workflows/integration-test-nfs-suite.yaml @@ -43,7 +43,7 @@ jobs: run: | GOPATH=$(go env GOPATH) make clean && make -j$nproc IMAGES='nfs' build docker images - docker tag $(docker images|awk '/build-/ {print $1}') rook/nfs:v1.7.2 + docker tag $(docker images|awk '/build-/ {print $1}') rook/nfs:v1.7.3 - name: install nfs-common run: | diff --git a/.github/workflows/integration-tests-on-release.yaml b/.github/workflows/integration-tests-on-release.yaml index cf21b2700..5c9a7ad5d 100644 --- a/.github/workflows/integration-tests-on-release.yaml +++ b/.github/workflows/integration-tests-on-release.yaml @@ -45,7 +45,7 @@ jobs: run: | GOPATH=$(go env GOPATH) make clean && make -j$nproc IMAGES='nfs' build docker images - docker tag $(docker images|awk '/build-/ {print $1}') rook/nfs:v1.7.2 + docker tag $(docker images|awk '/build-/ {print $1}') rook/nfs:v1.7.3 - name: install nfs-common run: | diff --git a/Documentation/quickstart.md b/Documentation/quickstart.md index 2a3bcf1e2..bc509e77c 100644 --- a/Documentation/quickstart.md +++ b/Documentation/quickstart.md @@ -27,7 +27,7 @@ You can read further about the details and limitations of these volumes in the [ First deploy the Rook NFS operator using the following commands: ```console -$ git clone --single-branch --branch v1.7.2 https://github.com/rook/nfs.git +$ git clone --single-branch --branch v1.7.3 https://github.com/rook/nfs.git cd rook/cluster/examples/kubernetes/nfs kubectl create -f crds.yaml kubectl create -f operator.yaml diff --git a/cluster/examples/kubernetes/nfs/operator.yaml b/cluster/examples/kubernetes/nfs/operator.yaml index 1384d2afc..dd3dfdbc9 100644 --- a/cluster/examples/kubernetes/nfs/operator.yaml +++ b/cluster/examples/kubernetes/nfs/operator.yaml @@ -122,7 +122,7 @@ spec: serviceAccountName: rook-nfs-operator containers: - name: rook-nfs-operator - image: rook/nfs:v1.7.2 + image: rook/nfs:v1.7.3 imagePullPolicy: IfNotPresent args: ["nfs", "operator"] env: diff --git a/cluster/examples/kubernetes/nfs/webhook.yaml b/cluster/examples/kubernetes/nfs/webhook.yaml index e544c6904..75b78ef95 100644 --- a/cluster/examples/kubernetes/nfs/webhook.yaml +++ b/cluster/examples/kubernetes/nfs/webhook.yaml @@ -111,7 +111,7 @@ spec: spec: containers: - name: rook-nfs-webhook - image: rook/nfs:v1.7.2 + image: rook/nfs:v1.7.3 imagePullPolicy: IfNotPresent args: ["nfs", "webhook"] ports: diff --git a/tests/scripts/github-action-helper.sh b/tests/scripts/github-action-helper.sh index 2b49f46e5..aaffd7b68 100755 --- a/tests/scripts/github-action-helper.sh +++ b/tests/scripts/github-action-helper.sh @@ -121,7 +121,7 @@ function build_rook() { tests/scripts/validate_modified_files.sh build docker images if [[ "$build_type" == "build" ]]; then - docker tag "$(docker images | awk '/build-/ {print $1}')" rook/ceph:v1.7.2 + docker tag "$(docker images | awk '/build-/ {print $1}')" rook/nfs:v1.7.3 fi }