e136b0d822
fernet-manage: - filter used to return a list on python2 but on python3 it returns an iterator which has no len method - Coherce the keys var into a list so we can run len on it on both versions update-endpoint: - ConfigParser is called configparser on python3 - try/catch and import the proper configparser Change-Id: I8296074f4d20e47afe0c7aea41bf21999685aecd
115 lines
4.0 KiB
Smarty
115 lines
4.0 KiB
Smarty
{{/*
|
|
Copyright 2017 The Openstack-Helm Authors.
|
|
|
|
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.
|
|
*/}}
|
|
|
|
#!/usr/bin/env python
|
|
import os
|
|
import sys
|
|
try:
|
|
import ConfigParser
|
|
except ImportError:
|
|
import configparser as ConfigParser
|
|
import logging
|
|
from sqlalchemy import create_engine
|
|
|
|
# Create logger, console handler and formatter
|
|
logger = logging.getLogger('OpenStack-Helm Keystone Endpoint management')
|
|
logger.setLevel(logging.DEBUG)
|
|
ch = logging.StreamHandler()
|
|
ch.setLevel(logging.DEBUG)
|
|
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
|
|
|
|
# Set the formatter and add the handler
|
|
ch.setFormatter(formatter)
|
|
logger.addHandler(ch)
|
|
|
|
# Get the connection string for the service db
|
|
if "OPENSTACK_CONFIG_FILE" in os.environ:
|
|
os_conf = os.environ['OPENSTACK_CONFIG_FILE']
|
|
if "OPENSTACK_CONFIG_DB_SECTION" in os.environ:
|
|
os_conf_section = os.environ['OPENSTACK_CONFIG_DB_SECTION']
|
|
else:
|
|
logger.critical('environment variable OPENSTACK_CONFIG_DB_SECTION not set')
|
|
sys.exit(1)
|
|
if "OPENSTACK_CONFIG_DB_KEY" in os.environ:
|
|
os_conf_key = os.environ['OPENSTACK_CONFIG_DB_KEY']
|
|
else:
|
|
logger.critical('environment variable OPENSTACK_CONFIG_DB_KEY not set')
|
|
sys.exit(1)
|
|
try:
|
|
config = ConfigParser.RawConfigParser()
|
|
logger.info("Using {0} as db config source".format(os_conf))
|
|
config.read(os_conf)
|
|
logger.info("Trying to load db config from {0}:{1}".format(
|
|
os_conf_section, os_conf_key))
|
|
user_db_conn = config.get(os_conf_section, os_conf_key)
|
|
logger.info("Got config from {0}".format(os_conf))
|
|
except:
|
|
logger.critical("Tried to load config from {0} but failed.".format(os_conf))
|
|
raise
|
|
elif "DB_CONNECTION" in os.environ:
|
|
user_db_conn = os.environ['DB_CONNECTION']
|
|
logger.info('Got config from DB_CONNECTION env var')
|
|
else:
|
|
logger.critical('Could not get db config, either from config file or env var')
|
|
sys.exit(1)
|
|
|
|
# User DB engine
|
|
try:
|
|
user_engine = create_engine(user_db_conn)
|
|
except:
|
|
logger.critical('Could not get user database config')
|
|
raise
|
|
|
|
# Set Internal Endpoint
|
|
try:
|
|
endpoint_url = os.environ['OS_BOOTSTRAP_INTERNAL_URL']
|
|
cmd = "update endpoint set url = %s where interface ='internal' and service_id = (select id from service where service.type = 'identity')"
|
|
user_engine.execute(cmd, (endpoint_url,))
|
|
except:
|
|
logger.critical("Could not update internal endpoint")
|
|
raise
|
|
|
|
# Set Admin Endpoint
|
|
try:
|
|
endpoint_url = os.environ['OS_BOOTSTRAP_ADMIN_URL']
|
|
cmd = "update endpoint set url = %s where interface ='admin' and service_id = (select id from service where service.type = 'identity')"
|
|
user_engine.execute(cmd, (endpoint_url,))
|
|
except:
|
|
logger.critical("Could not update admin endpoint")
|
|
raise
|
|
|
|
# Set Public Endpoint
|
|
try:
|
|
endpoint_url = os.environ['OS_BOOTSTRAP_PUBLIC_URL']
|
|
cmd = "update endpoint set url = %s where interface ='public' and service_id = (select id from service where service.type = 'identity')"
|
|
user_engine.execute(cmd, (endpoint_url,))
|
|
except:
|
|
logger.critical("Could not update public endpoint")
|
|
raise
|
|
|
|
# Print endpoints
|
|
try:
|
|
endpoints = user_engine.execute(
|
|
"select interface, url from endpoint where service_id = (select id from service where service.type = 'identity')"
|
|
).fetchall()
|
|
for row in endpoints:
|
|
logger.info("endpoint ({0}): {1}".format(row[0], row[1]))
|
|
except:
|
|
logger.critical("Could not update endpoint")
|
|
raise
|
|
|
|
logger.info('Finished Endpoint Management')
|