Fix/config map ADD envfrom #89
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
token: "${{ secrets.GITHUB_TOKEN }}" | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
- name: Install Helm | |
uses: azure/setup-helm@v1 | |
with: | |
version: v3.9.3 | |
- name: Setup Kubeval | |
uses: lra/[email protected] | |
- name: Bump Helm Chart Version | |
run: | | |
#!/bin/bash | |
python3 -m pip install pybump | |
charts=$(ls -d charts/*/ | awk -F/ '{print $2}') | |
K8S_VERSIONS=$(git ls-remote --refs --tags https://github.com/kubernetes/kubernetes.git | cut -d/ -f3 | grep -e '^v1\.[0-9]\{2\}\.[0]\{1,2\}$' | grep -v -e '^v1\.1[0-7]\{1\}' | cut -c2-) | |
for chart in $charts; | |
do | |
chart_ver=$(yq '.version' charts/$chart/Chart.yaml); | |
chart_changes="$(git diff --name-only HEAD $chart-$chart_ver -- charts/$chart)"; | |
if [ ! -z "$chart_changes" ]; | |
then | |
for version in $K8S_VERSIONS | |
do | |
echo $version; | |
helm template --kube-version $version --set ingress.enabled=true charts/$chart -f charts/$chart/values.yaml | kubeval --additional-schema-locations https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master --strict -v $version; | |
done | |
pybump bump --file charts/$chart/Chart.yaml --level patch --quiet | |
new_version=$(yq '.version' charts/$chart/Chart.yaml ) | |
echo $chart-$new_version | |
git add charts/$chart/Chart.yaml | |
git commit -m "Bump $chart version $new_version" | |
if [[ "${{ github.event_name }}" == "push" ]]; then | |
git push | |
fi | |
fi | |
done | |
- name: Helm Chart Releaser | |
if: ${{ github.event_name == 'push' && github.ref_name == 'main' }} | |
uses: helm/[email protected] | |
env: | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |