Override images provided as artifacts from buildset registry
Switch from using images from defined in docker_images to provided as zuul artifacts. Currently to be used in conjunction with [0] in openstack-helm-images pipelines. [0] https://review.opendev.org/741551 Change-Id: I43dbd38906e8854c87a361f2e5e479f57850252f Signed-off-by: Andrii Ostapenko <andrii.ostapenko@att.com>
This commit is contained in:
parent
aa26614df4
commit
7a0558bd78
@ -19,7 +19,7 @@
|
||||
- name: Override images
|
||||
include_role:
|
||||
name: override-images
|
||||
when: docker_images is defined
|
||||
when: buildset_registry is defined
|
||||
- name: Use docker mirror
|
||||
include_role:
|
||||
name: use-docker-mirror
|
||||
|
@ -11,13 +11,30 @@
|
||||
# limitations under the License.
|
||||
|
||||
---
|
||||
- name: Create test images overrides
|
||||
- name: Use buildset registry
|
||||
include_role:
|
||||
name: use-buildset-registry
|
||||
|
||||
- name: Print zuul
|
||||
debug:
|
||||
var: zuul
|
||||
|
||||
- name: Override proposed images from artifacts
|
||||
shell: >
|
||||
find {{ work_dir }}/../openstack-helm*/*/values* -type f -exec sed -i
|
||||
's#\({{ item.repository }}\):\({{ item.tags[0] }}\)#\1:{{ prefix }}_\2#g' {} +
|
||||
loop: "{{ docker_images }}"
|
||||
find {{ override_paths | join(" ") }} -type f -exec sed -Ei
|
||||
"s#['\"]?docker\.io/({{ repo }}):({{ tag }})['\"]?\$#{{ buildset_registry_alias }}:{{ buildset_registry.port }}/\1:\2#g" {} +
|
||||
loop: "{{ zuul.artifacts | default([]) }}"
|
||||
args:
|
||||
chdir: "{{ work_dir }}"
|
||||
loop_control:
|
||||
loop_var: zj_zuul_artifact
|
||||
when: "'metadata' in zj_zuul_artifact and zj_zuul_artifact.metadata.type | default('') == 'container_image'"
|
||||
vars:
|
||||
prefix: "{{ zuul.change | default(false) | ternary('change_' + zuul.change, 'periodic') }}"
|
||||
tag: "{{ zj_zuul_artifact.metadata.tag }}"
|
||||
repo: "{{ zj_zuul_artifact.metadata.repository }}"
|
||||
override_paths:
|
||||
- ../openstack-helm*/*/values*
|
||||
- ../openstack-helm-infra/tools/deployment/
|
||||
|
||||
- name: Diff
|
||||
shell: |
|
||||
|
@ -15,7 +15,8 @@
|
||||
|
||||
set -xe
|
||||
|
||||
: ${MINIKUBE_AIO:="docker.io/openstackhelm/minikube-aio:latest-ubuntu_bionic"}
|
||||
MINIKUBE_AIO_DEFAULT="docker.io/openstackhelm/minikube-aio:latest-ubuntu_bionic"
|
||||
: ${MINIKUBE_AIO:=${MINIKUBE_AIO_DEFAULT}}
|
||||
|
||||
export DEBCONF_NONINTERACTIVE_SEEN=true
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
|
Loading…
Reference in New Issue
Block a user