
* Rename common chart to helm-toolkit * Update useage of helpers to include reference to chart they come from. * Update helm-toolkit function naming Also catches several functions missed in previous PS * Update remaining requirements.yaml to use helm-toolbox * Dep Check container fix for common -> helm-toolbox renaming
14 lines
683 B
Smarty
14 lines
683 B
Smarty
#!/bin/bash
|
|
set -ex
|
|
|
|
keystone-manage --config-file=/etc/keystone/keystone.conf db_sync
|
|
|
|
keystone-manage --config-file=/etc/keystone/keystone.conf bootstrap \
|
|
--bootstrap-username {{ .Values.keystone.admin_user }} \
|
|
--bootstrap-password {{ .Values.keystone.admin_password }} \
|
|
--bootstrap-project-name {{ .Values.keystone.admin_project_name }} \
|
|
--bootstrap-admin-url {{ include "helm-toolkit.endpoint_keystone_admin" . }} \
|
|
--bootstrap-public-url {{ include "helm-toolkit.endpoint_keystone_internal" . }} \
|
|
--bootstrap-internal-url {{ include "helm-toolkit.endpoint_keystone_internal" . }} \
|
|
--bootstrap-region-id {{ .Values.keystone.admin_region_name }}
|