Skip to content

Commit

Permalink
Some config changes
Browse files Browse the repository at this point in the history
  • Loading branch information
burmanm committed Jan 26, 2024
1 parent 7877a74 commit fca9ece
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/packaging/docker-services/reaper/reaper.env
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,6 @@ REAPER_LOGGING_ROOT_LEVEL=DEBUG
#JAVA_OPTS="-Dwhatever=value"
CRYPTO_SYSTEM_PROPERTY_SECRET="CRYPTO_SECRET"
CRYPTO_SECRET="secret"
REAPER_HTTP_MANAGEMENT_ENABLE="false"
REAPER_HTTP_MANAGEMENT_ENABLE="false"
REAPER_HTTP_MANAGEMENT_KEYSTORE_PATH=""
REAPER_HTTP_MANAGEMENT_TRUSTSTORE_PATH=""
4 changes: 3 additions & 1 deletion src/server/src/main/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ ENV REAPER_SEGMENT_COUNT_PER_NODE=64 \
JAVA_OPTS="" \
REAPER_MAX_PARALLEL_REPAIRS=2 \
REAPER_MGMT_API_METRICS_PORT=9000 \
REAPER_HTTP_MANAGEMENT_ENABLE="false"
REAPER_HTTP_MANAGEMENT_ENABLE="false" \
REAPER_HTTP_MANAGEMENT_KEYSTORE_PATH="" \
REAPER_HTTP_MANAGEMENT_TRUSTSTORE_PATH=""

# used to run spreaper cli
RUN apk add --update \
Expand Down
2 changes: 1 addition & 1 deletion src/server/src/main/docker/cassandra-reaper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ repairManagerSchedulingIntervalSeconds: ${REAPER_REPAIR_MANAGER_SCHEDULING_INTER
jmxConnectionTimeoutInSeconds: ${REAPER_JMX_CONNECTION_TIMEOUT_IN_SECONDS}
useAddressTranslator: ${REAPER_USE_ADDRESS_TRANSLATOR}
maxParallelRepairs: ${REAPER_MAX_PARALLEL_REPAIRS}
mgmtApiMetricsPort: ${REAPER_MGMT_API_METRICS_PORT}

# datacenterAvailability has three possible values: ALL | LOCAL | EACH
# the correct value to use depends on whether jmx ports to C* nodes in remote datacenters are accessible
Expand Down Expand Up @@ -83,6 +82,7 @@ server:

httpManagement:
enabled: ${REAPER_HTTP_MANAGEMENT_ENABLE}
mgmtApiMetricsPort: ${REAPER_MGMT_API_METRICS_PORT}
keystore: ${REAPER_HTTP_MANAGEMENT_KEYSTORE_PATH}
truststore: ${REAPER_HTTP_MANAGEMENT_TRUSTSTORE_PATH}

0 comments on commit fca9ece

Please sign in to comment.