-
Notifications
You must be signed in to change notification settings - Fork 325
56 lines (45 loc) · 1.24 KB
/
helm-ci.yaml
File metadata and controls
56 lines (45 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.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