-
Notifications
You must be signed in to change notification settings - Fork 25
110 lines (107 loc) · 3.64 KB
/
Copy pathhelm.yaml
File metadata and controls
110 lines (107 loc) · 3.64 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# THIS FILE WAS AUTOMATICALLY GENERATED BY KRES, PLEASE DO NOT EDIT.
#
# Generated on 2026-05-28T10:32:12Z by kres 100288b-dirty.
concurrency:
group: helm-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
"on":
push:
tags:
- v*
pull_request:
branches:
- main
- release-*
paths:
- test/**
name: helm
jobs:
default:
permissions:
actions: read
contents: write
id-token: write
issues: read
packages: write
pull-requests: read
runs-on:
group: generic
steps:
- name: gather-system-info
id: system-info
uses: kenchan0130/actions-system-info@59699597e84e80085a750998045983daa49274c4 # version: v1.4.0
continue-on-error: true
- name: print-system-info
run: |
MEMORY_GB=$((${{ steps.system-info.outputs.totalmem }}/1024/1024/1024))
OUTPUTS=(
"CPU Core: ${{ steps.system-info.outputs.cpu-core }}"
"CPU Model: ${{ steps.system-info.outputs.cpu-model }}"
"Hostname: ${{ steps.system-info.outputs.hostname }}"
"NodeName: ${NODE_NAME}"
"Kernel release: ${{ steps.system-info.outputs.kernel-release }}"
"Kernel version: ${{ steps.system-info.outputs.kernel-version }}"
"Name: ${{ steps.system-info.outputs.name }}"
"Platform: ${{ steps.system-info.outputs.platform }}"
"Release: ${{ steps.system-info.outputs.release }}"
"Total memory: ${MEMORY_GB} GB"
)
for OUTPUT in "${OUTPUTS[@]}";do
echo "${OUTPUT}"
done
continue-on-error: true
- name: checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # version: v6.0.2
- name: Unshallow
run: |
git fetch --prune --unshallow
- name: Set up Docker Buildx
id: setup-buildx
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # version: v4.1.0
with:
driver: remote
endpoint: tcp://buildkit-amd64.ci.svc.cluster.local:1234
timeout-minutes: 10
- name: Login to registry
if: github.event_name != 'pull_request'
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # version: v4.2.0
with:
password: ${{ secrets.GITHUB_TOKEN }}
registry: ghcr.io
username: ${{ github.repository_owner }}
- name: Lint chart
if: github.event_name == 'pull_request'
run: |
helm lint test/test-helm-chart
- name: Template chart
if: github.event_name == 'pull_request'
run: |
helm template -f test/test-helm-chart/ci-values.yaml test-helm-chart test/test-helm-chart
- name: Install unit test plugin
if: github.event_name == 'pull_request'
run: |
make helm-plugin-install
- name: Unit test chart
if: github.event_name == 'pull_request'
run: |
make chart-unittest
- name: Generate schema
if: github.event_name == 'pull_request'
run: |
make chart-gen-schema
- name: Generate docs
if: github.event_name == 'pull_request'
run: |
make helm-docs
- name: helm login
if: startsWith(github.ref, 'refs/tags/')
env:
HELM_CONFIG_HOME: /var/tmp/.config/helm
run: |
helm registry login -u ${{ github.repository_owner }} -p ${{ secrets.GITHUB_TOKEN }} ghcr.io
- name: Release chart
if: startsWith(github.ref, 'refs/tags/')
env:
HELM_CONFIG_HOME: /var/tmp/.config/helm
run: |
make helm-release