cinder: Upgrade default images to ussuri

After volumev1 and volumev2 were removed, openstack-helm-infra gates
started failing because they are deploying defult cinder image which
is currently stein. The python-openstackclient for stein sets volumev2
as default volume type. This was failing volume commands in cinder
bootstrap job for openstack-helm-infra gates

Change-Id: Ifcb3c813f132c9deedaba9a11f9ef721efcb92b0
This commit is contained in:
Gupta, Sangeet (sg774j) 2021-11-18 21:30:10 +00:00
parent 28a29d1d7a
commit 44914c4ef1
3 changed files with 14 additions and 13 deletions

View File

@ -14,7 +14,7 @@ apiVersion: v1
appVersion: v1.0.0
description: OpenStack-Helm Cinder
name: cinder
version: 0.2.12
version: 0.2.13
home: https://docs.openstack.org/cinder/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Cinder/OpenStack_Project_Cinder_vertical.png
sources:

View File

@ -43,20 +43,20 @@ release_group: null
images:
tags:
test: docker.io/xrally/xrally-openstack:2.0.0
db_init: docker.io/openstackhelm/heat:stein-ubuntu_bionic
cinder_db_sync: docker.io/openstackhelm/cinder:stein-ubuntu_bionic
db_drop: docker.io/openstackhelm/heat:stein-ubuntu_bionic
db_init: docker.io/openstackhelm/heat:ussuri-ubuntu_bionic
cinder_db_sync: docker.io/openstackhelm/cinder:ussuri-ubuntu_bionic
db_drop: docker.io/openstackhelm/heat:ussuri-ubuntu_bionic
rabbit_init: docker.io/rabbitmq:3.7-management
ks_user: docker.io/openstackhelm/heat:stein-ubuntu_bionic
ks_service: docker.io/openstackhelm/heat:stein-ubuntu_bionic
ks_endpoints: docker.io/openstackhelm/heat:stein-ubuntu_bionic
cinder_api: docker.io/openstackhelm/cinder:stein-ubuntu_bionic
bootstrap: docker.io/openstackhelm/heat:stein-ubuntu_bionic
cinder_scheduler: docker.io/openstackhelm/cinder:stein-ubuntu_bionic
cinder_volume: docker.io/openstackhelm/cinder:stein-ubuntu_bionic
cinder_volume_usage_audit: docker.io/openstackhelm/cinder:stein-ubuntu_bionic
ks_user: docker.io/openstackhelm/heat:ussuri-ubuntu_bionic
ks_service: docker.io/openstackhelm/heat:ussuri-ubuntu_bionic
ks_endpoints: docker.io/openstackhelm/heat:ussuri-ubuntu_bionic
cinder_api: docker.io/openstackhelm/cinder:ussuri-ubuntu_bionic
bootstrap: docker.io/openstackhelm/heat:ussuri-ubuntu_bionic
cinder_scheduler: docker.io/openstackhelm/cinder:ussuri-ubuntu_bionic
cinder_volume: docker.io/openstackhelm/cinder:ussuri-ubuntu_bionic
cinder_volume_usage_audit: docker.io/openstackhelm/cinder:ussuri-ubuntu_bionic
cinder_storage_init: docker.io/openstackhelm/ceph-config-helper:latest-ubuntu_bionic
cinder_backup: docker.io/openstackhelm/cinder:stein-ubuntu_bionic
cinder_backup: docker.io/openstackhelm/cinder:ussuri-ubuntu_bionic
cinder_backup_storage_init: docker.io/openstackhelm/ceph-config-helper:latest-ubuntu_bionic
dep_check: quay.io/airshipit/kubernetes-entrypoint:v1.0.0
image_repo_sync: docker.io/docker:17.07.0

View File

@ -29,4 +29,5 @@ cinder:
- 0.2.10 Helm 3 - Fix Job Labels
- 0.2.11 Update htk requirements repo
- 0.2.12 Remove cinder v1/v2 defaults
- 0.2.13 Upgrade default images to ussuri
...