Skip to content

Commit 6db4caa

Browse files
Merge pull request #137 from AKamyshnikova/bump-bootstrap-0.1.14
Bump boostrap version
2 parents 309d642 + 31e8326 commit 6db4caa

File tree

10 files changed

+15
-13
lines changed

10 files changed

+15
-13
lines changed

.github/workflows/golangci-lint.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222
run:
2323
timeout: 5m
2424
issues-exit-code: 0
25+
output:
26+
uniq-by-line: false
2527
linters-settings:
2628
gosimple:
2729
checks:
@@ -37,4 +39,4 @@ jobs:
3739
- name: golangci-lint
3840
uses: golangci/golangci-lint-action@v3
3941
with:
40-
version: v1.51.2
42+
version: v1.54

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ SERVICE_NAME := casskop
2020
BUILD_FOLDER = .
2121
MOUNTDIR = $(PWD)
2222

23-
BOOTSTRAP_IMAGE ?= ghcr.io/cscetbon/casskop-bootstrap:0.1.13
23+
BOOTSTRAP_IMAGE ?= ghcr.io/cscetbon/casskop-bootstrap:0.1.14
2424
TELEPRESENCE_REGISTRY ?= datawire
2525
KUBESQUASH_REGISTRY:=
2626
KUBECONFIG ?= ~/.kube/config

api/v2/cassandracluster_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const (
2121
DefaultReadinessHealthCheckPeriod int32 = 10
2222

2323
defaultCassandraImage = "cassandra:3.11.10"
24-
defaultBootstrapImage = "ghcr.io/cscetbon/casskop-bootstrap:0.1.13"
24+
defaultBootstrapImage = "ghcr.io/cscetbon/casskop-bootstrap:0.1.14"
2525
defaultConfigBuilderImage = "datastax/cass-config-builder:1.0.4"
2626

2727
DefaultBackRestImage = "ghcr.io/cscetbon/instaclustr-icarus:1.1.3"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ require (
7676
golang.org/x/time v0.3.0 // indirect
7777
gomodules.xyz/jsonpatch/v2 v2.3.0 // indirect
7878
google.golang.org/appengine v1.6.7 // indirect
79-
google.golang.org/protobuf v1.30.0 // indirect
79+
google.golang.org/protobuf v1.33.0 // indirect
8080
gopkg.in/inf.v0 v0.9.1 // indirect
8181
gopkg.in/yaml.v2 v2.4.0 // indirect
8282
gopkg.in/yaml.v3 v3.0.1 // indirect

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,8 +369,8 @@ google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpAD
369369
google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4=
370370
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
371371
google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
372-
google.golang.org/protobuf v1.30.0 h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng=
373-
google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
372+
google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI=
373+
google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
374374
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
375375
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
376376
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=

multi-casskop/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ require (
4646
golang.org/x/text v0.13.0 // indirect
4747
golang.org/x/time v0.3.0 // indirect
4848
google.golang.org/appengine v1.6.7 // indirect
49-
google.golang.org/protobuf v1.30.0 // indirect
49+
google.golang.org/protobuf v1.33.0 // indirect
5050
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
5151
gopkg.in/inf.v0 v0.9.1 // indirect
5252
gopkg.in/yaml.v2 v2.4.0 // indirect

multi-casskop/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1277,8 +1277,8 @@ google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlba
12771277
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
12781278
google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
12791279
google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
1280-
google.golang.org/protobuf v1.30.0 h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng=
1281-
google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
1280+
google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI=
1281+
google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
12821282
gopkg.in/airbrake/gobrake.v2 v2.0.9/go.mod h1:/h5ZAUhDkGaJfjzjKLSjv6zCL6O0LLBxU4K+aSYdM/U=
12831283
gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=
12841284
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc/go.mod h1:m7x9LTH6d71AHyAX77c9yqWCCa3UKHcVEj9y7hAtKDk=

test/kuttl/backup-restore/00-createCluster.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
nodesPerRacks: 2
77
cassandraImage: cassandra:3.11.9
8-
bootstrapImage: ghcr.io/cscetbon/casskop-bootstrap:0.1.13
8+
bootstrapImage: ghcr.io/cscetbon/casskop-bootstrap:0.1.14
99
dataCapacity: 256Mi
1010
hardAntiAffinity: false
1111
deletePVC: true

test/kuttl/sidecars/00-assert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ spec:
4747
- name: config-builder
4848
image: datastax/cass-config-builder:1.0.3
4949
- name: bootstrap
50-
image: ghcr.io/cscetbon/casskop-bootstrap:0.1.13
50+
image: ghcr.io/cscetbon/casskop-bootstrap:0.1.14
5151
containers:
5252
- args:
5353
- tail

website/docs/2_setup/5_upgrade_v1_to_v2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ kubectl apply -f config/crd/bases
3333

3434
## Edit your CassandraCluster object
3535
Now it's time to edit your object and add the cassandra/java configuration from your configmap in there.
36-
You also have to update the bootstrap image version to *0.1.13*.
36+
You also have to update the bootstrap image version to *0.1.14*.
3737
```shell
3838
kubectl edit cassandraclusters.db.orange.com your-object
3939
```
@@ -47,7 +47,7 @@ metadata:
4747
spec:
4848
nodesPerRacks: 2
4949
cassandraImage: cassandra:3.11.9
50-
bootstrapImage: ghcr.io/cscetbon/casskop-bootstrap:0.1.13
50+
bootstrapImage: ghcr.io/cscetbon/casskop-bootstrap:0.1.14
5151
config:
5252
cassandra-yaml:
5353
num_tokens: 256

0 commit comments

Comments
 (0)