Skip to content

Commit

Permalink
Add $DSE_HOME//resources/cassandra/tools/bin to the default path
Browse files Browse the repository at this point in the history
  • Loading branch information
burmanm committed Dec 20, 2024
1 parent 9c855cf commit 32c052f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Changelog for Management API, new PRs should update the `main / unreleased` sect

## unreleased

* [ENHANCEMENT] [#579](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/579) Add /opt/dse/resources/cassandra/tools/bin to the default PATH for sstable tools
* [ENHANCEMENT] [#574](https://github.com/k8ssandra/management-api-for-apache-cassandra/issues/574) Support consistency parameter in the /start when replacing a DSE node.

## v0.1.90 (2024-11-22)
Expand Down
2 changes: 1 addition & 1 deletion dse/Dockerfile-dse6.8.jdk11
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ RUN if ! grep -qxf "JVM_OPTS=\"\$JVM_OPTS -Dinsights.default_mode=disabled\"" <
# Fix COPY directory modes
RUN chmod g+w ${MAAC_PATH} ${DSE_HOME} ${DSE_AGENT_HOME} ${CDC_AGENT_PATH}

ENV PATH=$DSE_HOME/bin:$PATH
ENV PATH=$DSE_HOME/bin:$DSE_HOME/resources/cassandra/tools/bin:$PATH
ENV HOME=$DSE_HOME
WORKDIR $HOME

Expand Down
2 changes: 1 addition & 1 deletion dse/Dockerfile-dse6.8.jdk8
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ RUN if ! grep -qxf "JVM_OPTS=\"\$JVM_OPTS -Dinsights.default_mode=disabled\"" <
# Fix COPY directory modes
RUN chmod g+w ${MAAC_PATH} ${DSE_HOME} ${DSE_AGENT_HOME} ${CDC_AGENT_PATH}

ENV PATH=$DSE_HOME/bin:$PATH
ENV PATH=$DSE_HOME/bin:$DSE_HOME/resources/cassandra/tools/bin:$PATH
ENV HOME=$DSE_HOME
WORKDIR $HOME

Expand Down
2 changes: 1 addition & 1 deletion dse/Dockerfile-dse6.8.ubi8
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ LABEL summary="The best distribution of Apache Cassandra™ with integrated Sear
LABEL description="Built on the best distribution of Apache Cassandra™, DataStax Enterprise is the always-on database designed to allow you to effortlessly build and scale your apps, integrating graph, search, analytics, administration, developer tooling, and monitoring into a single unified platform. We power your apps' real-time moments so you can create instant insights and powerful customer experiences."

ENV DSE_HOME=/opt/dse
ENV PATH=$DSE_HOME/bin:$PATH
ENV PATH=$DSE_HOME/bin:$DSE_HOME/resources/cassandra/tools/bin:$PATH
ENV HOME=$DSE_HOME

ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
Expand Down
2 changes: 1 addition & 1 deletion dse/Dockerfile-dse6.9.jdk11
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ RUN if ! grep -qxf "JVM_OPTS=\"\$JVM_OPTS -Dinsights.default_mode=disabled\"" <
# Fix COPY directory modes
RUN chmod g+w ${MAAC_PATH} ${DSE_HOME} ${DSE_AGENT_HOME} ${CDC_AGENT_PATH}

ENV PATH=$DSE_HOME/bin:$PATH
ENV PATH=$DSE_HOME/bin:$DSE_HOME/resources/cassandra/tools/bin:$PATH
ENV HOME=$DSE_HOME
WORKDIR $HOME

Expand Down
2 changes: 1 addition & 1 deletion dse/Dockerfile-dse6.9.ubi8
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ LABEL summary="The best distribution of Apache Cassandra™ with integrated Sear
LABEL description="Built on the best distribution of Apache Cassandra™, DataStax Enterprise is the always-on database designed to allow you to effortlessly build and scale your apps, integrating graph, search, analytics, administration, developer tooling, and monitoring into a single unified platform. We power your apps' real-time moments so you can create instant insights and powerful customer experiences."

ENV DSE_HOME=/opt/dse
ENV PATH=$DSE_HOME/bin:$PATH
ENV PATH=$DSE_HOME/bin:$DSE_HOME/resources/cassandra/tools/bin:$PATH
ENV HOME=$DSE_HOME

ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
Expand Down

0 comments on commit 32c052f

Please sign in to comment.