diff options
author | Instrumental <jonathan.gathman@att.com> | 2018-10-06 20:32:59 -0500 |
---|---|---|
committer | Instrumental <jonathan.gathman@att.com> | 2018-10-06 21:37:15 -0500 |
commit | 49525303bc07064d60b3dde3056b2e9e8a379435 (patch) | |
tree | 2779f89f45e31b14799daaecaf856d56a448e6cd /auth/docker | |
parent | 196000bb838818d9e3cc3d5c08614c1898388135 (diff) |
Refactor Client Config
Refactored the client to handle multiple keystores without compromising keys, etc.
After testing, now valiates just fine
Issue-ID: AAF-424, AAF-540
Change-Id: I3b99014dd4b73ae22c359d35658da3bb13745ef9
Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'auth/docker')
-rw-r--r-- | auth/docker/cass.props.init | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/auth/docker/cass.props.init b/auth/docker/cass.props.init index fc9bab43..75127424 100644 --- a/auth/docker/cass.props.init +++ b/auth/docker/cass.props.init @@ -1,3 +1,12 @@ #!/bin/bash -CASS_HOST=cass.aaf.osaaf.org:<Cass IP> +# Use for assigning to /etc/hosts, when DNS doesn't have Cassandra FQDN +CASS_HOST=cass.aaf.osaaf.org:<IP of running Cass> + +#### +# Detailed Cassandra Environmental Variables +#### +# CASSANDRA_CLUSTER=<unsert means default, host from CASS_HOST above, or "localhost"> +# CASSANDRA_USER=<unset means default (cassandra)> +# CASSANDRA_PASSWORD=<unset means default (cassandra)> +# CASSANDRA_PORT=<unset means default (9042)> |