
* imagePullPolicy requirements for init-containers in 1.5 * dependency tree specified mariadb-init, when there is only a mariadb-seed job to depend on * the requirements.yaml should not include any chart in this repository other then common as that severely complicates removing charts as all dependent elements are removed with it * the post.sh.yaml has HOME set to /tmp which will not read /home/ansible configuration. It was unclear if this was by design, but /home/ansible seems like an important part of the kolla toolbox * the post.sh.yaml file had quoting typos, but even when they are fixed the job/glance-post will not run to completion, complaining of a missing kolla_keystone_service module
47 lines
1.8 KiB
YAML
47 lines
1.8 KiB
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: glance-postsh
|
|
data:
|
|
post.sh: |+
|
|
#!/bin/bash
|
|
set -ex
|
|
|
|
ansible localhost -vvv -m kolla_keystone_service -a 'service_name=glance \
|
|
service_type=image \
|
|
description="Openstack Image" \
|
|
endpoint_region="{{ .Values.keystone.glance_region_name }}" \
|
|
url="http://glance-api:{{ .Values.network.port.api }}" \
|
|
interface=admin \
|
|
region_name="{{ .Values.keystone.admin_region_name }}" \
|
|
auth="{# openstack_glance_auth #}"' \
|
|
-e "{ 'openstack_glance_auth': {{ include "keystone_auth" . }} }"
|
|
|
|
ansible localhost -vvv -m kolla_keystone_service -a 'service_name=glance \
|
|
service_type=image \
|
|
description="Openstack Image" \
|
|
endpoint_region="{{ .Values.keystone.glance_region_name }}" \
|
|
url="http://glance-api:{{ .Values.network.port.api }}" \
|
|
interface=internal \
|
|
region_name="{{ .Values.keystone.admin_region_name }}" \
|
|
auth="{# openstack_glance_auth #}"' \
|
|
-e "{ 'openstack_glance_auth': {{ include "keystone_auth" . }} }"
|
|
|
|
ansible localhost -vvv -m kolla_keystone_service -a 'service_name=glance \
|
|
service_type=image \
|
|
description="Openstack Image" \
|
|
endpoint_region="{{ .Values.keystone.glance_region_name }}" \
|
|
url="http://glance-api:{{ .Values.network.port.api }}" \
|
|
interface=public \
|
|
region_name="{{ .Values.keystone.admin_region_name }}" \
|
|
auth="{# openstack_glance_auth #}"' \
|
|
-e "{ 'openstack_glance_auth': {{ include "keystone_auth" . }} }"
|
|
|
|
ansible localhost -vvv -m kolla_keystone_user -a "project=service \
|
|
user={{ .Values.keystone.glance_user }} \
|
|
password={{ .Values.keystone.glance_password }} \
|
|
role=admin \
|
|
region_name={{ .Values.keystone.admin_region_name }} \
|
|
auth="{# openstack_glance_auth #}"' \
|
|
-e "{ 'openstack_glance_auth': {{ include "keystone_auth" . }} }"
|