From 0224fb0f2c401baa7a362e1b2efe7aa2b5ecd292 Mon Sep 17 00:00:00 2001 From: Mohammed Naser Date: Tue, 9 Aug 2022 10:46:56 -0400 Subject: [PATCH] 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 --- playbooks/build-chart.yaml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/playbooks/build-chart.yaml b/playbooks/build-chart.yaml index e068468a2..9cd77d294 100644 --- a/playbooks/build-chart.yaml +++ b/playbooks/build-chart.yaml @@ -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 ...