Fix chart builds

We broke the chart builds when we dropped the 'package' target in the
Makefile.   This fixes it also removes/drops the need to run the sed
locally since we point to the local folders anyways.

Change-Id: Iac8924f14c8fbb8e07b96b51790539c3ce1618e6
This commit is contained in:
Mohammed Naser 2022-08-09 10:46:56 -04:00
parent 2dcd38e4b0
commit 0224fb0f2c
1 changed files with 0 additions and 8 deletions

View File

@ -25,16 +25,8 @@
args:
executable: /bin/bash
- name: updates the requirements due to the lack of helm serve in helm 3
shell: |
find "{{ zuul.project.src_dir }}" -type f -name "requirements.yaml" -exec sed -i "s#http://localhost:8879/charts#https://tarballs.opendev.org/openstack/openstack-helm-infra#g" {} \;
args:
executable: /bin/bash
- name: make all
make:
chdir: "{{ zuul.project.src_dir }}"
target: all
params:
TASK: package
...