feat(ci): migrate chart registry from GHCR to S3 bucket #46
Workflow file for this run
This file contains hidden or 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: Helm Chart CI | |
| on: | |
| pull_request: | |
| branches: [main] | |
| env: | |
| HELM_VERSION: v3.18.2 | |
| KUBECONFORM_VERSION: 0.7.0 | |
| PYTHON_VERSION: 3.13 | |
| jobs: | |
| helm-ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Helm | |
| uses: azure/setup-helm@v4 | |
| with: | |
| version: ${{ env.HELM_VERSION }} | |
| - name: Install helm-unittest plugin | |
| run: | | |
| helm plugin install https://github.com/helm-unittest/helm-unittest | |
| - name: Install kubeconform | |
| run: | | |
| curl -sSLo kubeconform.tar.gz "https://github.com/yannh/kubeconform/releases/download/v${{ env.KUBECONFORM_VERSION }}/kubeconform-linux-amd64.tar.gz" | |
| tar -xzf kubeconform.tar.gz | |
| sudo mv kubeconform /usr/local/bin/ | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| - name: Set up chart-testing | |
| uses: helm/chart-testing-action@v2 | |
| - name: Check changed charts | |
| run: | | |
| ct lint --chart-dirs . --target-branch ${{ github.event.repository.default_branch }} --validate-maintainers=false | |
| - name: GeoServer - Unit Tests | |
| run: | | |
| echo "::group::Unit testing geoserver/latest" | |
| helm unittest geoserver/latest | |
| echo "::endgroup::" | |
| - name: GeoServer - Kubeconform | |
| run: | | |
| echo "::group::Validating geoserver/latest manifests" | |
| helm template geoserver-test geoserver/latest | kubeconform -summary | |
| echo "::endgroup::" | |
| - name: MapStore - Unit Tests | |
| run: | | |
| echo "::group::Unit testing mapstore/latest" | |
| helm unittest mapstore/latest | |
| echo "::endgroup::" | |
| - name: MapStore - Kubeconform | |
| run: | | |
| echo "::group::Validating mapstore/latest manifests" | |
| helm template mapstore-test mapstore/latest | kubeconform -summary | |
| echo "::endgroup::" |