Skip to content

Commit

Permalink
bump version of mgmt sidecar to 0.1.5 (#129)
Browse files Browse the repository at this point in the history
* bump version of mgmt sidecar to 0.1.4

* fix test

* add env var so that seeds is properly configured

* 0.1.5

* More 0.1.5

* No need for IGNORE_DEFAULTS

Co-authored-by: Jim Dickinson <[email protected]>
  • Loading branch information
jsanda and jimdickinson committed Jun 22, 2020
1 parent cdf1134 commit 248b30e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion buildsettings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ dev:
images:
- datastax/dse-server:6.8.0
- datastax/cass-config-builder:1.0.0
- datastax/cassandra-mgmtapi-3_11_6:v0.1.2
- datastax/cassandra-mgmtapi-3_11_6:v0.1.5
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ type ProgressState string
// In the event that no image is found, an error is returned
func getImageForServerVersion(server, version string) (string, error) {
const (
cassandra_3_11_6 = "datastax/cassandra-mgmtapi-3_11_6:v0.1.2"
cassandra_4_0_0 = "datastax/cassandra-mgmtapi-4_0_0:v0.1.2"
cassandra_3_11_6 = "datastax/cassandra-mgmtapi-3_11_6:v0.1.5"
cassandra_4_0_0 = "datastax/cassandra-mgmtapi-4_0_0:v0.1.5"
dse_6_8_0 = "datastax/dse-server:6.8.0"
)
sv := server + "-" + version
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func Test_makeImage(t *testing.T) {
serverType: "cassandra",
serverVersion: "3.11.6",
},
want: "datastax/cassandra-mgmtapi-3_11_6:v0.1.2",
want: "datastax/cassandra-mgmtapi-3_11_6:v0.1.5",
errString: "",
},
{
Expand Down
2 changes: 1 addition & 1 deletion tests/testdata/oss-three-rack-three-node-dc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ spec:
clusterName: cluster1
serverType: cassandra
serverVersion: "3.11.6"
serverImage: datastax/cassandra-mgmtapi-3_11_6:v0.1.2
serverImage: datastax/cassandra-mgmtapi-3_11_6:v0.1.5
configBuilderImage: datastax/cass-config-builder:1.0.0
managementApiAuth:
insecure: {}
Expand Down
2 changes: 1 addition & 1 deletion tests/testdata/oss-two-rack-six-node-dc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ spec:
clusterName: cluster1
serverType: cassandra
serverVersion: "3.11.6"
serverImage: datastax/cassandra-mgmtapi-3_11_6:v0.1.2
serverImage: datastax/cassandra-mgmtapi-3_11_6:v0.1.5
configBuilderImage: datastax/cass-config-builder:1.0.0
managementApiAuth:
insecure: {}
Expand Down

0 comments on commit 248b30e

Please sign in to comment.