helm(v4): Split fluent-operator-crds chart into separate charts for fluentd and fluent-bit CRDs #555
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 CI | |
| on: | |
| pull_request: | |
| branches: | |
| - 'master' | |
| - 'release-*' | |
| paths: | |
| - ".github/workflows/helm-ci.yaml" | |
| - "charts/**" | |
| - "tests/**" | |
| - "Makefile" | |
| - "go.mod" | |
| - "go.sum" | |
| env: | |
| KUBECTL_VERSION: v1.25.1 | |
| HELM_VERSION: v3.17.2 | |
| jobs: | |
| helm-tests: | |
| name: helm e2e tests | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 30 | |
| env: | |
| GO111MODULE: "on" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Go | |
| uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0 | |
| with: | |
| go-version-file: go.mod | |
| cache-dependency-path: go.sum | |
| - name: Setup kubectl | |
| uses: marcofranssen/setup-kubectl@8dd250ecabc2b05504337c1ff1ab4766f360742f # v2.1.0 | |
| with: | |
| kubectlVersion: ${{ env.KUBECTL_VERSION }} | |
| - name: Install Helm | |
| uses: azure/setup-helm@dda3372f752e03dde6b3237bc9431cdc2f7a02a2 # v5.0.0 | |
| with: | |
| version: ${{ env.HELM_VERSION }} | |
| - name: Install dependences | |
| run: make kind ginkgo setup-test-e2e | |
| - name: Run helm e2e tests | |
| run: make fluentd_helm-e2e |