generated from kubernetes/kubernetes-template-project
-
Notifications
You must be signed in to change notification settings - Fork 33
119 lines (100 loc) · 3.04 KB
/
policy-assistant.yml
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
name: policy-assistant
on:
push:
branches:
- 'main'
- 'release*'
tags:
- 'v*'
paths:
- 'cmd/policy-assistant/**'
- '.github/workflows/policy-assistant.yml'
pull_request:
branches:
- 'main'
- 'release*'
paths:
- 'cmd/policy-assistant/**'
- '.github/workflows/policy-assistant.yml'
workflow_dispatch:
env:
GO_VERSION: "1.22.0"
permissions: write-all
jobs:
go-tests:
name: Go Tests
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Run Unit Tests
run: |
cd cmd/policy-assistant/
go test ./...
- name: Run Go Vet
run: |
cd cmd/policy-assistant/
go vet ./...
- name: Run Go Fmt
shell: bash
run: |
cd cmd/policy-assistant/
exitCode=0
go fmt ./... | grep "\.go" || exitCode=$?
if [[ $exitCode == 0 ]]; then
echo "please run 'make fmt' in the cmd/policy-assistant/ directory"
exit 1
else
echo "go files are properly formatted"
fi
build:
name: Build Policy Assistant
runs-on: ubuntu-22.04
needs: go-tests
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Build policy-assistant Binary
run: |
cd cmd/policy-assistant/
make policy-assistant
- name: Save policy-assistant Binary
run: |
mkdir -p artifacts
cp cmd/policy-assistant/cmd/policy-assistant/policy-assistant artifacts/
- name: Upload policy-assistant Binary
uses: actions/upload-artifact@v4
with:
name: policy-assistant-binary
path: artifacts/policy-assistant
integration-tests:
name: Integration Tests
runs-on: ubuntu-22.04
needs: build
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Download policy-assistant Binary
uses: actions/download-artifact@v4
with:
name: policy-assistant-binary
path: artifacts
- name: Set policy-assistant Binary Permissions
run: chmod u+x artifacts/policy-assistant
- name: Run Integration Test - Explain Mode
run: |
artifacts/policy-assistant analyze --mode explain --policy-path cmd/policy-assistant/examples/demos/kubecon-eu-2024/policies/
- name: Run Integration Test - Probe Mode
run: |
artifacts/policy-assistant analyze --mode probe --policy-path cmd/policy-assistant/examples/demos/kubecon-eu-2024/policies/ --probe-path cmd/policy-assistant/examples/demos/kubecon-eu-2024/demo-probe.json
- name: Run Integration Test - Walkthrough Mode
run: |
artifacts/policy-assistant analyze --mode walkthrough --policy-path cmd/policy-assistant/examples/demos/kubecon-eu-2024/policies/ --traffic-path cmd/policy-assistant/examples/traffic-example.json