Skip to content

Commit

Permalink
Add jmxAuth keys to default configs.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquincasares committed Jul 7, 2017
1 parent 629abb5 commit a8d645e
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 0 deletions.
4 changes: 4 additions & 0 deletions resource/cassandra-reaper-cassandra.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jmxPorts:
127.0.0.7: 7700
127.0.0.8: 7800

#jmxAuth:
# username: myUsername
# password: myPassword

logging:
level: INFO
loggers:
Expand Down
4 changes: 4 additions & 0 deletions resource/cassandra-reaper-h2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jmxPorts:
127.0.0.7: 7700
127.0.0.8: 7800

#jmxAuth:
# username: myUsername
# password: myPassword

logging:
level: INFO
loggers:
Expand Down
4 changes: 4 additions & 0 deletions resource/cassandra-reaper-memory.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jmxPorts:
127.0.0.7: 7700
127.0.0.8: 7800

#jmxAuth:
# username: myUsername
# password: myPassword

logging:
level: INFO
loggers:
Expand Down
4 changes: 4 additions & 0 deletions resource/cassandra-reaper-postgres.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jmxPorts:
127.0.0.7: 7700
127.0.0.8: 7800

#jmxAuth:
# username: myUsername
# password: myPassword

logging:
level: INFO
loggers:
Expand Down
4 changes: 4 additions & 0 deletions resource/cassandra-reaper.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jmxPorts:
127.0.0.7: 7700
127.0.0.8: 7800

#jmxAuth:
# username: myUsername
# password: myPassword

logging:
level: INFO
loggers:
Expand Down
2 changes: 2 additions & 0 deletions src/main/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ ENV REAPER_SEGMENT_COUNT=200 \
REAPER_AUTO_SCHEDULE_TIME_BETWEEN_FIRST_SCHEDULE=PT6H \
REAPER_AUTO_SCHEDULE_EXCLUDED_KEYSPACES="[]" \
REAPER_JMX_PORTS="{}" \
REAPER_JMX_USERNAME="" \
REAPER_JMX_PASSWORD="" \
REAPER_LOGGING_ROOT_LEVEL=INFO \
REAPER_LOGGERS="{}" \
REAPER_LOGGING_FORMAT='"%-6level [%d] [%t] %logger{5} - %msg %n"' \
Expand Down
4 changes: 4 additions & 0 deletions src/main/docker/cassandra-reaper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ autoScheduling:

jmxPorts: ${REAPER_JMX_PORTS}

jmxAuth:
username: ${REAPER_JMX_USERNAME}
password: ${REAPER_JMX_PASSWORD}

logging:
level: ${REAPER_LOGGING_ROOT_LEVEL}
loggers: ${REAPER_LOGGERS}
Expand Down

0 comments on commit a8d645e

Please sign in to comment.