4047ff0fd4
The build-chart playbook task to point each chart to helm-toolkit has a find command that when used with another repo, will include the charts for osh-infra as well. This change modifies the playbook to only modify requirements in charts in the repo being published. Change-Id: I493b4c64fe2525bac0acae06bd40c3896c918e20
41 lines
1.4 KiB
YAML
41 lines
1.4 KiB
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
|
|
tasks:
|
|
- name: install helm3
|
|
become_user: root
|
|
shell: |
|
|
TMP_DIR=$(mktemp -d)
|
|
curl -sSL https://get.helm.sh/helm-${HELM_VERSION}-linux-amd64.tar.gz | tar -zxv --strip-components=1 -C ${TMP_DIR}
|
|
sudo mv ${TMP_DIR}/helm /usr/bin/helm
|
|
rm -rf ${TMP_DIR}
|
|
environment:
|
|
HELM_VERSION: "v3.3.4"
|
|
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
|
|
...
|