Skip to content

Commit

Permalink
Add changelog entry
Browse files Browse the repository at this point in the history
  • Loading branch information
adejanovski committed Oct 2, 2023
1 parent 30764ce commit faa5948
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ Changelog for Cass Operator, new PRs should update the `main / unreleased` secti

## unreleased

* [CHANGE] [#573](https://github.com/k8ssandra/cass-operator/issues/573) Add the namespace as env variable in the server-system-logger container to label metrics with.

## v1.17.2

* [ENHANCEMENT] [#571](https://github.com/k8ssandra/cass-operator/issues/571) Ensure both "server-config-init" as well as "server-config-init-base" are always created in the initContainers if 4.1.x is used.
Expand Down
2 changes: 1 addition & 1 deletion config/manager/image_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: ImageConfig
metadata:
name: image-config
images:
system-logger: "k8ssandra/system-logger:latest"
system-logger: "k8ssandra/system-logger:v1.18.0-dev.30764ce-20231002"
config-builder: "datastax/cass-config-builder:1.0-ubi7"
k8ssandra-client: "k8ssandra/k8ssandra-client:v0.2.0"
# cassandra:
Expand Down
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ kind: Kustomization
images:
- name: controller
newName: k8ssandra/cass-operator
newTag: latest
newTag: v1.18.0-dev.30764ce-20231002
2 changes: 1 addition & 1 deletion pkg/reconciliation/construct_podtemplatespec_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ func TestLoggerContainerEnvVars(t *testing.T) {
loggerContainer := findContainer(templateSpec.Spec.Containers, SystemLoggerContainerName)
assert.Equal(SystemLoggerContainerName, loggerContainer.Name)

assert.Equal(5, len(loggerContainer.Env))
assert.Equal(6, len(loggerContainer.Env))

assert.True(envVarsContains(loggerContainer.Env, podNameEnvVar))
assert.True(envVarsContains(loggerContainer.Env, nodeNameEnvVar))
Expand Down

0 comments on commit faa5948

Please sign in to comment.