File tree Expand file tree Collapse file tree 4 files changed +15
-25
lines changed Expand file tree Collapse file tree 4 files changed +15
-25
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
endpoints :
3
- identity :
4
- auth :
5
- admin :
6
- region_name : RegionOne
7
- blazar :
8
- region_name : RegionOne
9
- test :
10
- region_name : RegionOne
11
3
reservation :
12
4
hosts :
13
5
public : blazar-api
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- # GLOBAL_OVERRIDES_DIR="/etc/genestack/helm-configs/global_overrides"
3
+ GLOBAL_OVERRIDES_DIR=" /etc/genestack/helm-configs/global_overrides"
4
4
SERVICE_CONFIG_DIR=" /etc/genestack/helm-configs/blazar"
5
5
BASE_OVERRIDES=" /opt/genestack/base-helm-configs/blazar/blazar-helm-overrides.yaml"
6
6
@@ -26,8 +26,7 @@ HELM_CMD="helm upgrade --install blazar openstack-helm/blazar --version ${BLAZAR
26
26
HELM_CMD+=" -f ${BASE_OVERRIDES} "
27
27
28
28
# Append YAML files from the directories
29
- # for dir in "$GLOBAL_OVERRIDES_DIR" "$SERVICE_CONFIG_DIR"; do
30
- for dir in " $SERVICE_CONFIG_DIR " ; do
29
+ for dir in " $GLOBAL_OVERRIDES_DIR " " $SERVICE_CONFIG_DIR " ; do
31
30
if compgen -G " ${dir} /*.yaml" > /dev/null; then
32
31
for yaml_file in " ${dir} " /* .yaml; do
33
32
HELM_CMD+=" -f ${yaml_file} "
37
36
38
37
HELM_CMD+=" --set endpoints.identity.auth.admin.password=\" $( kubectl --namespace openstack get secret keystone-admin -o jsonpath=' {.data.password}' | base64 -d) \" "
39
38
HELM_CMD+=" --set endpoints.identity.auth.blazar.password=\" $( kubectl --namespace openstack get secret blazar-admin -o jsonpath=' {.data.password}' | base64 -d) \" "
40
- HELM_CMD+=" --set endpoints.identity.auth.service.password=\" $( kubectl --namespace openstack get secret blazar-keystone-service-password -o jsonpath=' {.data.password}' | base64 -d) \" "
41
39
HELM_CMD+=" --set endpoints.identity.auth.test.password=\" $( kubectl --namespace openstack get secret blazar-keystone-test-password -o jsonpath=' {.data.password}' | base64 -d) \" "
42
40
HELM_CMD+=" --set endpoints.oslo_db.auth.admin.password=\" $( kubectl --namespace openstack get secret mariadb -o jsonpath=' {.data.root-password}' | base64 -d) \" "
43
41
HELM_CMD+=" --set endpoints.oslo_db.auth.blazar.password=\" $( kubectl --namespace openstack get secret blazar-db-password -o jsonpath=' {.data.password}' | base64 -d) \" "
Original file line number Diff line number Diff line change 1
1
charts :
2
2
barbican : 2024.2.208+13651f45-628a320c
3
- blazar : 2025.1.1+4172872b0
3
+ blazar : 2025.1.2+a4df9c709
4
4
ceilometer : 2024.2.115+13651f45-628a320c
5
5
cinder : 2024.2.409+13651f45-628a320c
6
6
envoy : v1.4.2
Original file line number Diff line number Diff line change @@ -550,18 +550,6 @@ conf:
550
550
blazar:
551
551
oslo_messaging_notifications:
552
552
driver: noop
553
-
554
- endpoints:
555
- reservation:
556
- host_fqdn_override:
557
- public:
558
- tls: {}
559
- host: blazar.${GATEWAY_DOMAIN}
560
- port:
561
- api:
562
- public: 443
563
- scheme:
564
- public: https
565
553
EOF
566
554
fi
567
555
@@ -876,12 +864,24 @@ endpoints:
876
864
public: 443
877
865
scheme:
878
866
public: https
867
+ reservation:
868
+ host_fqdn_override:
869
+ public:
870
+ tls: {}
871
+ host: blazar.${GATEWAY_DOMAIN}
872
+ port:
873
+ api:
874
+ public: 443
875
+ scheme:
876
+ public: https
879
877
identity:
880
878
auth:
881
879
admin:
882
880
region_name: *region
883
881
barbican:
884
882
region_name: *region
883
+ blazar:
884
+ region_name: *region
885
885
cinder:
886
886
region_name: *region
887
887
ceilometer:
You can’t perform that action at this time.
0 commit comments