Skip to content
This repository has been archived by the owner on Feb 23, 2022. It is now read-only.

Commit

Permalink
build: update the release version to v1.7.3
Browse files Browse the repository at this point in the history
With the Cassandra patch release we set the example manifests
versions to v1.7.3

Signed-off-by: Travis Nielsen <[email protected]>
  • Loading branch information
travisn committed Sep 10, 2021
1 parent 2d5a4a3 commit 5320980
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-test-cassandra-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='cassandra' build
docker images
docker tag $(docker images|awk '/build-/ {print $1}') rook/cassandra:master
docker tag $(docker images|awk '/build-/ {print $1}') rook/cassandra:v1.7.3
- name: TestCassandraSuite
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='cassandra' build
docker images
docker tag $(docker images|awk '/build-/ {print $1}') rook/cassandra:master
docker tag $(docker images|awk '/build-/ {print $1}') rook/cassandra:v1.7.3
- name: TestCassandraSuite
run: |
Expand Down
2 changes: 1 addition & 1 deletion Documentation/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ If you have any questions along the way, please don't hesitate to ask us in our
First deploy the Rook Cassandra Operator using the following commands:

```console
$ git clone --single-branch --branch v1.7.2 https://github.com/rook/cassandra.git
$ git clone --single-branch --branch v1.7.3 https://github.com/rook/cassandra.git
cd rook/cluster/examples/kubernetes/cassandra
kubectl apply -f crds.yaml
kubectl apply -f operator.yaml
Expand Down
6 changes: 3 additions & 3 deletions cluster/examples/kubernetes/cassandra/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ apiVersion: apps/v1
kind: StatefulSet
metadata:
name: rook-cassandra-operator
namespace: rook-cassandra-system # namespace:operator
namespace: cassandra-ns-system # namespace:operator
labels:
app: rook-cassandra-operator
spec:
Expand All @@ -109,8 +109,8 @@ spec:
serviceAccountName: rook-cassandra-operator
containers:
- name: rook-cassandra-operator
image: rook/cassandra:v1.7.2
imagePullPolicy: "Always"
image: rook/cassandra:v1.7.3
imagePullPolicy: IfNotPresent
args: ["cassandra", "operator"]
env:
- name: POD_NAME
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/cassandra:v1.7.3
fi
}

Expand Down

0 comments on commit 5320980

Please sign in to comment.