Skip to content

Commit

Permalink
make a SSL_CERTFILE configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
simisimis committed Mar 4, 2024
1 parent a3eac33 commit 097f174
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uptime_service_validation/coordinator/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def setUpValidatorPods(time_intervals, logging, worker_image, worker_tag):
client.V1EnvVar(name="CASSANDRA_USE_SSL", value="1"),
client.V1EnvVar(
name="SSL_CERTFILE",
value="/root/.cassandra/sf-class2-root.crt",
value=f"{os.environ.get('SSL_CERTFILE')}:/root/.cassandra/sf-class2-root.crt",
),
client.V1EnvVar(
name="CQLSH",
Expand Down

0 comments on commit 097f174

Please sign in to comment.