diff options
author | Thomas Nelson Jr (arthurdent3) tn1381@att.com <tn1381@att.com> | 2018-04-18 18:45:58 -0400 |
---|---|---|
committer | Thomas Nelson Jr (arthurdent3) tn1381@att.com <tn1381@att.com> | 2018-04-18 18:48:51 -0400 |
commit | 6a0328891c81d076885bc328b6c8baefacd44639 (patch) | |
tree | f035616726945eef3167661fb84ad2a204b672fa /distribution/cassandra | |
parent | 2b34c9375762146a48a5ea866e0dd5954e780b3c (diff) |
Update cassandra docker image
Removal for issues with Kubernetes - Need to make sure any injected
files
Are chown 664 or ID is smae ID as Cassandra in Container
( Which is 999 ).
Change-Id: Ib568d94131bcd6766da202f4591f4634d1804761
Issue-ID: MUSIC-70, MUSIC-60
Signed-off-by: Thomas Nelson Jr (arthurdent3) tn1381@att.com <tn1381@att.com>
Diffstat (limited to 'distribution/cassandra')
-rw-r--r-- | distribution/cassandra/docker-entrypoint.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/distribution/cassandra/docker-entrypoint.sh b/distribution/cassandra/docker-entrypoint.sh index f05daed2..20bf272f 100644 --- a/distribution/cassandra/docker-entrypoint.sh +++ b/distribution/cassandra/docker-entrypoint.sh @@ -1,9 +1,11 @@ #!/bin/bash set -e -for f in /docker-entrypoint-initdb.d/*.cql; do - chown cassandra.root "$f" -done +# Removal for issues with Kubernetes - Need to make sure any injected files +# Are chown 664 or ID is smae ID as Cassandra in Container. +#for f in /docker-entrypoint-initdb.d/*.cql; do +# chown cassandra.root "$f" +#done # first arg is `-f` or `--some-option` |