Skip to content

Commit

Permalink
Update Vector to 0.39.0, use TOML as the config format
Browse files Browse the repository at this point in the history
  • Loading branch information
burmanm committed Jul 19, 2024
1 parent cf277bc commit 5cd18f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Changelog for Cass Operator, new PRs should update the `main / unreleased` secti
* [ENHANCEMENT] [#648](https://github.com/k8ssandra/cass-operator/issues/648) Make MinReadySeconds configurable value in the Spec.
* [ENHANCEMENT] [#184](https://github.com/k8ssandra/cass-operator/issues/349) Add CassandraDatacenter.Status fields as metrics also
* [ENHANCEMENT] [#199](https://github.com/k8ssandra/cass-operator/issues/199) If .spec.readOnlyRootFilesystem is set, run the cassandra container with readOnlyRootFilesystem. Also, modify the default SecurityContext to mention runAsNonRoot: true
* [ENHANCEMENT] [#595](https://github.com/k8ssandra/cass-operator/issues/595) Update Vector to 0.39.0 and enforce the TOML file format in the starting command

## v1.21.1

Expand Down
4 changes: 2 additions & 2 deletions logger.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG VERSION
ARG TARGETPLATFORM

# Install Vector
ENV VECTOR_VERSION 0.33.1
ENV VECTOR_VERSION 0.39.0
RUN case ${TARGETPLATFORM} in \
"linux/amd64") VECTOR_ARCH=x86_64 ;; \
"linux/arm64") VECTOR_ARCH=aarch64 ;; \
Expand Down Expand Up @@ -33,4 +33,4 @@ COPY ./LICENSE.txt /licenses/

# Non-root user, cassandra as default
USER cassandra
ENTRYPOINT ["/usr/bin/vector"]
ENTRYPOINT ["/usr/bin/vector", "--config", "/etc/vector/vector.toml"]

0 comments on commit 5cd18f1

Please sign in to comment.