Skip to content

Commit

Permalink
Merge pull request #21 from travisn/release-1.7.3
Browse files Browse the repository at this point in the history
build: Update the release version to v1.7.3
  • Loading branch information
travisn authored Sep 9, 2021
2 parents 83d84da + 0cce526 commit 99e2a51
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-test-nfs-suite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests-on-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion Documentation/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cluster/examples/kubernetes/nfs/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion cluster/examples/kubernetes/nfs/webhook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion tests/scripts/github-action-helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 99e2a51

Please sign in to comment.