e6306badac
The default command didn't work, so we need to fix that. Related-Bug: #1811401 Needed-By: Idc0844c8726aa53bc4cbd55f902248f854d2464f Change-Id: Ifacbee9e31d84be1008ab7545defac71cf65793f
18 lines
706 B
Bash
18 lines
706 B
Bash
#!/bin/bash
|
|
|
|
|
|
container_cli=$(hiera -c /etc/puppet/hiera.yaml container_cli docker)
|
|
|
|
container_name=$($container_cli ps --format="{{.Names}}" | grep nova_vnc_proxy)
|
|
|
|
service_crt="$(hiera -c /etc/puppet/hiera.yaml nova::cert)"
|
|
service_key="$(hiera -c /etc/puppet/hiera.yaml nova::key)"
|
|
|
|
# Copy the new cert from the mount-point to the real path
|
|
$container_cli exec -u root "$container_name" cp "/var/lib/kolla/config_files/src-tls$service_crt" "$service_crt"
|
|
|
|
# Copy the new key from the mount-point to the real path
|
|
$container_cli exec -u root "$container_name" cp "/var/lib/kolla/config_files/src-tls$service_key" "$service_key"
|
|
|
|
# No need to trigger a reload for novnc proxy since the cert is not cached
|