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

Commit acc9f96

Browse files
authored
Merge pull request #23 from travisn/release-1.7.3
build: Update the release version to v1.7.3
2 parents 2d5a4a3 + 5320980 commit acc9f96

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/integration-test-cassandra-suite.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
run: |
4444
GOPATH=$(go env GOPATH) make clean && make -j$nproc IMAGES='cassandra' build
4545
docker images
46-
docker tag $(docker images|awk '/build-/ {print $1}') rook/cassandra:master
46+
docker tag $(docker images|awk '/build-/ {print $1}') rook/cassandra:v1.7.3
4747
4848
- name: TestCassandraSuite
4949
run: |

.github/workflows/integration-tests-on-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: |
4646
GOPATH=$(go env GOPATH) make clean && make -j$nproc IMAGES='cassandra' build
4747
docker images
48-
docker tag $(docker images|awk '/build-/ {print $1}') rook/cassandra:master
48+
docker tag $(docker images|awk '/build-/ {print $1}') rook/cassandra:v1.7.3
4949
5050
- name: TestCassandraSuite
5151
run: |

Documentation/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If you have any questions along the way, please don't hesitate to ask us in our
1919
First deploy the Rook Cassandra Operator using the following commands:
2020

2121
```console
22-
$ git clone --single-branch --branch v1.7.2 https://github.com/rook/cassandra.git
22+
$ git clone --single-branch --branch v1.7.3 https://github.com/rook/cassandra.git
2323
cd rook/cluster/examples/kubernetes/cassandra
2424
kubectl apply -f crds.yaml
2525
kubectl apply -f operator.yaml

cluster/examples/kubernetes/cassandra/operator.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ apiVersion: apps/v1
9292
kind: StatefulSet
9393
metadata:
9494
name: rook-cassandra-operator
95-
namespace: rook-cassandra-system # namespace:operator
95+
namespace: cassandra-ns-system # namespace:operator
9696
labels:
9797
app: rook-cassandra-operator
9898
spec:
@@ -109,8 +109,8 @@ spec:
109109
serviceAccountName: rook-cassandra-operator
110110
containers:
111111
- name: rook-cassandra-operator
112-
image: rook/cassandra:v1.7.2
113-
imagePullPolicy: "Always"
112+
image: rook/cassandra:v1.7.3
113+
imagePullPolicy: IfNotPresent
114114
args: ["cassandra", "operator"]
115115
env:
116116
- name: POD_NAME

tests/scripts/github-action-helper.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ function build_rook() {
121121
tests/scripts/validate_modified_files.sh build
122122
docker images
123123
if [[ "$build_type" == "build" ]]; then
124-
docker tag "$(docker images | awk '/build-/ {print $1}')" rook/ceph:v1.7.2
124+
docker tag "$(docker images | awk '/build-/ {print $1}')" rook/cassandra:v1.7.3
125125
fi
126126
}
127127

0 commit comments

Comments
 (0)