#!/bin/bash # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. set -xe : ${OSH_INFRA_EXTRA_HELM_ARGS_LIBVIRT:="$(./tools/deployment/common/get-values-overrides.sh libvirt)"} CERT_DIR=$(mktemp -d) cd ${CERT_DIR} openssl req -x509 -new -nodes -days 1 -newkey rsa:2048 -keyout cacert.key -out cacert.pem -subj "/CN=libvirt.org" openssl req -newkey rsa:2048 -days 1 -nodes -keyout client-key.pem -out client-req.pem -subj "/CN=libvirt.org" openssl rsa -in client-key.pem -out client-key.pem openssl x509 -req -in client-req.pem -days 1 \ -CA cacert.pem -CAkey cacert.key -set_serial 01 \ -out client-cert.pem openssl req -newkey rsa:2048 -days 1 -nodes -keyout server-key.pem -out server-req.pem -subj "/CN=libvirt.org" openssl rsa -in server-key.pem -out server-key.pem openssl x509 -req -in server-req.pem -days 1 \ -CA cacert.pem -CAkey cacert.key -set_serial 01 \ -out server-cert.pem cd - cat <