Merge "Fix if condition to test for var==true"
commit
b508448958
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue