openstack-helm/playbooks/build-chart.yaml
Vladimir Kozhukalov baecad31b3 Install reno>=4.1.0 on test env nodes
This is needed to generate CHANGELOG.md files from
release nodes while building chart tarballs.

Change-Id: I3c52f4ace6770515d64bfdf4433d27fd3a674eb0
2025-01-27 06:18:48 -06:00

31 lines
857 B
YAML

---
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- hosts: all
roles:
- name: ensure-helm
helm_version: "3.16.4"
tasks:
- name: Install reno
pip:
name: reno>=4.1.0
extra_args: "--ignore-installed"
become: yes
- name: make all
make:
chdir: "{{ zuul.project.src_dir }}"
target: all
...