You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
. /etc/sysconfig/heat-params
|
|
|
|
if [ "$(echo $CERT_MANAGER_API | tr '[:upper:]' '[:lower:]')" = "false" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
cert_dir=/etc/kubernetes/certs
|
|
|
|
echo -e "$CA_KEY" > ${cert_dir}/ca.key
|
|
|
|
chown kube.kube ${cert_dir}/ca.key
|
|
chmod 400 ${cert_dir}/ca.key
|
|
|