Added MOS 24.2: different bug fixes
List of changes:
- use fresh heat image as a base for toolset image
- added cacert secret for public endpoints at rally and toolset
- rally creates env with public endpoints
- fixed rally openstack dry-run scenario typo
- added setting ext gw info for heat-router in prepare.sh
- added label to set image tag in dockerfile
Related-PROD: PROD-37187
Change-Id: I83c91c8ab20f39087f7db7b32f67dd7b2130d5e7
diff --git a/k8s/yamls/qa-rally.yaml b/k8s/yamls/qa-rally.yaml
index c889c95..86ec4e4 100644
--- a/k8s/yamls/qa-rally.yaml
+++ b/k8s/yamls/qa-rally.yaml
@@ -63,12 +63,18 @@
secretKeyRef:
key: OS_DEFAULT_DOMAIN
name: keystone-keystone-admin
+ - name: OS_CACERT
+ value: /etc/ssl/certs/openstack-ca-bundle.pem
imagePullPolicy: IfNotPresent
name: rally
image: registry.mirantis.com/professional-services-qa/xrally-kube:latest
volumeMounts:
- mountPath: /artifacts
name: qa-pv-r
+ - mountPath: /etc/ssl/certs/openstack-ca-bundle.pem
+ name: ca-cert-bundle
+ readOnly: true
+ subPath: ca_bundle
dnsPolicy: ClusterFirst
volumes:
- emptyDir: {}
@@ -76,3 +82,7 @@
- name: qa-pv-r
persistentVolumeClaim:
claimName: qa-pvc-r
+ - name: ca-cert-bundle
+ secret:
+ defaultMode: 420
+ secretName: keystone-ca-bundle