Fix if condition to test for var==true

Change the validation of the script execution to run only when
CERT_MANAGER_API == true as per default definition. 

dropping:  if RUN != "false"

Change-Id: I73aad3a3455fa3ebf9b360c40aa6ac003a44ac8a
This commit is contained in:
Diogo Guerra 2019-07-19 16:27:56 +02:00 committed by Diogo Guerra
parent 9c7cf5d6eb
commit dc8acda7f6
1 changed files with 2 additions and 2 deletions

View File

@ -5,10 +5,10 @@ printf "Starting to run ${step}\n"
. /etc/sysconfig/heat-params
if [ "$(echo $CERT_MANAGER_API | tr '[:upper:]' '[:lower:]')" != "false" ]; then
if [ "$(echo "${CERT_MANAGER_API}" | tr '[:upper:]' '[:lower:]')" = "true" ]; then
cert_dir=/etc/kubernetes/certs
echo -e "$CA_KEY" > ${cert_dir}/ca.key
echo -e "${CA_KEY}" > ${cert_dir}/ca.key
chown kube.kube ${cert_dir}/ca.key
chmod 400 ${cert_dir}/ca.key