Files
openstack-helm/playbooks/build-chart.yaml
Doug Goldstein 37b71c746c chore: set helm project wide to 3.18.1
This makes it so that 3.18.1 is the version used consistently and sets
it at the top-level.

Change-Id: I8623ed5b040ec53dd576471602cc93f091b581f3
Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
2025-12-14 12:05:06 -06:00

32 lines
859 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:
- ensure-python
- ensure-pip
- ensure-helm
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
...