Skip to content

update from values.yaml #8

update from values.yaml

update from values.yaml #8

Workflow file for this run

name: Test all Charts with 'dry-run' option
on:
push:
branches-ignore:
- main # Run on all not 'main' branches
jobs:
release:
permissions:
contents: write
runs-on: self-hosted
steps:
- name: Clean workspace
run: |
rm -Rf *
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Generate Helm README Documentation with jnorwood
run: |
sudo docker run --rm --volume "$(pwd):/helm-docs" -u $(id -u) jnorwood/helm-docs:latest
- name: Remove README.md template files
run: |
find . -name "README.md.gotmpl" | xargs rm
- name: Install Helm
run: |
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
sh ./get_helm.sh
rm ./get_helm.sh
- name: Dry-run of apigateway
run: |
helm template apigw apigateway/helm
- name: Dry-run of developerportal
run: |
helm template devportal developerportal/helm
- name: Dry-run of microservicesruntime
run: |
helm template msr microservicesruntime/helm
- name: Dry-run of mywebmethodsserver
run: |
helm template mws mywebmethodsserver/helm
- name: Dry-run of universalmessaging
run: |
helm template um universalmessaging/helm