Import generate_passwords.py from kolla-ansible

This is a direct copy of generate_passwords.py from kolla-ansible to
remove the kolla-ansible dependency.

Change-Id: Ia8a19ee4e196c4bd5f6d42fe0f6ccfc36f0bfb7f
Partially-Implements: blueprint remove-deps
This commit is contained in:
Steven Dake 2017-04-14 00:26:11 -04:00
parent d2b9eb06cb
commit a1e0d65270
7 changed files with 126 additions and 4 deletions

View File

@ -288,7 +288,7 @@ Copy default kolla-kubernetes configuration to /etc::
Generate default passwords via SPRNG::
sudo kolla-genpwd
sudo kolla-kubernetes-genpwd
Create a kubernetes namespace to isolate this kolla deployment::

View File

@ -0,0 +1,118 @@
#!/usr/bin/env python
# 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.
import argparse
import hmac
import os
import random
import string
import sys
from Crypto.PublicKey import RSA
from hashlib import md5
from hashlib import sha256
from oslo_utils import uuidutils
import yaml
# NOTE(SamYaple): Update the search path to prefer PROJECT_ROOT as the source
# of packages to import if we are using local tools instead of
# pip installed kolla tools
PROJECT_ROOT = os.path.abspath(os.path.join(
os.path.dirname(os.path.realpath(__file__)), '../..'))
if PROJECT_ROOT not in sys.path:
sys.path.insert(0, PROJECT_ROOT)
def generate_RSA(bits=4096):
new_key = RSA.generate(bits, os.urandom)
private_key = new_key.exportKey("PEM")
public_key = new_key.publickey().exportKey("OpenSSH")
return private_key, public_key
def main():
parser = argparse.ArgumentParser()
parser.add_argument(
'-p', '--passwords', type=str,
default=os.path.abspath('/etc/kolla/passwords.yml'),
help=('Path to the passwords yml file'))
args = parser.parse_args()
passwords_file = os.path.expanduser(args.passwords)
# These keys should be random uuids
uuid_keys = ['ceph_cluster_fsid',
'rbd_secret_uuid',
'cinder_rbd_secret_uuid',
'gnocchi_project_id',
'gnocchi_resource_id',
'gnocchi_user_id',
'designate_pool_id',
'karbor_openstack_infra_id']
# SSH key pair
ssh_keys = ['kolla_ssh_key', 'nova_ssh_key',
'keystone_ssh_key', 'bifrost_ssh_key']
# If these keys are None, leave them as None
blank_keys = ['docker_registry_password']
# HMAC-MD5 keys
hmac_md5_keys = ['designate_rndc_key']
# HMAC-SHA256 keys
hmac_sha256_keys = ['barbican_crypto_key']
# length of password
length = 40
with open(passwords_file, 'r') as f:
passwords = yaml.safe_load(f.read())
for k, v in passwords.items():
if (k in ssh_keys and
(v is None
or v.get('public_key') is None
and v.get('private_key') is None)):
private_key, public_key = generate_RSA()
passwords[k] = {
'private_key': private_key,
'public_key': public_key
}
continue
if v is None:
if k in blank_keys and v is None:
continue
if k in uuid_keys:
passwords[k] = uuidutils.generate_uuid()
elif k in hmac_md5_keys:
passwords[k] = (hmac.new(
uuidutils.generate_uuid(), '', md5)
.digest().encode('base64')[:-1])
elif k in hmac_sha256_keys:
passwords[k] = (hmac.new(
uuidutils.generate_uuid(), '', sha256)
.digest().encode('base64')[:-1])
else:
passwords[k] = ''.join([
random.SystemRandom().choice(
string.ascii_letters + string.digits)
for n in range(length)
])
with open(passwords_file, 'w') as f:
f.write(yaml.dump(passwords, default_flow_style=False))
if __name__ == '__main__':
main()

View File

@ -28,6 +28,7 @@ data_files =
[entry_points]
console_scripts =
kolla-kubernetes = kolla_kubernetes.app:main
kolla-kubernetes-genpwd = kolla_kubernetes.commands.genpwd:main
kollakube = kolla_kubernetes.app:main_kube
kolla_kubernetes.cli =

View File

@ -34,8 +34,10 @@ if [ "x$BRANCH" == "x2" -o "x$BRANCH" == "x3" ]; then
echo 'enable_placement: "no"' >> kolla-ansible/etc/kolla/globals.yml
fi
kolla-ansible/tools/generate_passwords.py
# Generate passwords using SPRNG tool
tools/generate_passwords.py
# Generate configuration based upon defaults and overrides
ansible-playbook -e ansible_python_interpreter=/usr/bin/python -e @/etc/kolla/globals.yml -e @/etc/kolla/passwords.yml -e CONFIG_DIR=/etc/kolla ansible/site.yml
ls -la /etc/kolla

View File

@ -23,7 +23,7 @@ fi
cat tests/conf/iscsi-all-in-one/kolla_kubernetes_config \
>> etc/kolla-kubernetes/kolla-kubernetes.yml
kolla-ansible/tools/generate_passwords.py
tools/generate_passwords.py
kolla-ansible/tools/kolla-ansible genconfig
crudini --set /etc/kolla/nova-compute/nova.conf libvirt virt_type qemu

1
tools/generate_passwords.py Symbolic link
View File

@ -0,0 +1 @@
../kolla_kubernetes/commands/genpwd.py

View File

@ -24,7 +24,7 @@ ceph_setup () {
}
config_setup () {
kolla-ansible/tools/generate_passwords.py
kolla-kubernetes/tools/secret-generator.py
kolla-ansible/tools/kolla-ansible genconfig
crudini --set /etc/kolla/nova-compute/nova.conf libvirt virt_type qemu