-
Notifications
You must be signed in to change notification settings - Fork 0
155 lines (130 loc) · 3.78 KB
/
Copy pathci.yml
File metadata and controls
155 lines (130 loc) · 3.78 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
if: github.repository == 'user-cube/cluster-bootstrap'
name: Go Tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: cli
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: cli/go.mod
cache-dependency-path: cli/go.sum
- name: Run tests
run: go test -race -coverprofile=coverage.out ./...
- name: Upload coverage
uses: actions/upload-artifact@v6
with:
name: coverage
path: cli/coverage.out
lint:
if: github.repository == 'user-cube/cluster-bootstrap'
name: Go Lint
runs-on: ubuntu-latest
defaults:
run:
working-directory: cli
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: cli/go.mod
cache-dependency-path: cli/go.sum
- uses: golangci/golangci-lint-action@v9
with:
working-directory: cli
security:
if: github.repository == 'user-cube/cluster-bootstrap'
name: Security Scan
runs-on: ubuntu-latest
defaults:
run:
working-directory: cli
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: cli/go.mod
cache-dependency-path: cli/go.sum
- name: Download Go dependencies
run: go mod download
- name: Install gosec
run: go install github.com/securego/gosec/v2/cmd/gosec@latest
- name: Run gosec
run: gosec -exclude-dir=vendor ./...
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
scan-type: fs
scan-ref: cli
exit-code: 1
severity: HIGH,CRITICAL
gitleaks:
name: Secret Detection
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: gitleaks/gitleaks-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
helm-lint:
name: Helm Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: azure/setup-helm@v4
- name: Lint all charts
run: |
helm lint apps/
for chart in components/*/; do
echo "Linting $chart..."
if grep -q "^dependencies:" "$chart/Chart.yaml"; then
helm dependency build "$chart"
fi
values_args=""
if [ -f "$chart/values/base.yaml" ]; then
values_args="-f $chart/values/base.yaml"
fi
helm lint "$chart" $values_args
done
helm-validate:
name: Helm Validate Values
runs-on: ubuntu-latest
strategy:
matrix:
environment: [dev, staging, prod]
steps:
- uses: actions/checkout@v6
- uses: azure/setup-helm@v4
- name: Build chart dependencies
run: |
for chart in components/*/; do
if grep -q "^dependencies:" "$chart/Chart.yaml"; then
helm dependency build "$chart"
fi
done
- name: Validate apps values
run: helm template apps/ -f apps/values/${{ matrix.environment }}.yaml
- name: Validate component values
run: |
for chart in components/*/; do
name=$(basename "$chart")
base="$chart/values/base.yaml"
env_file="$chart/values/${{ matrix.environment }}.yaml"
if [ -f "$base" ] && [ -f "$env_file" ]; then
echo "Validating $name for ${{ matrix.environment }}..."
helm template "$chart" -f "$base" -f "$env_file"
fi
done