-
Notifications
You must be signed in to change notification settings - Fork 1
79 lines (78 loc) · 2.54 KB
/
end2end.yaml
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
name: End2End Testing
on: [push]
jobs:
end2end:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Create Cluster
uses: AbsaOSS/k3d-action@v2
with:
cluster-name: cosign-tests
k3d-version: v5.4.6
- name: Create Local Registry
run: |
k3d registry create registry.localhost --port 5000
- name: Check Cluster Nodes
run: |
kubectl get nodes
- name: Check Coredns Deployment
run: |
kubectl -n kube-system rollout status deployment/coredns --timeout=60s
STATUS=$(kubectl -n kube-system get deployment coredns -o jsonpath={.status.readyReplicas})
if [[ $STATUS -ne 1 ]]
then
echo "Deployment coredns not ready"
kubectl -n kube-system get events
exit 1
else
echo "Deployment coredns OK"
fi
- name: Check Metricsserver Deployment
run: |
kubectl -n kube-system rollout status deployment/metrics-server --timeout=60s
STATUS=$(kubectl -n kube-system get deployment metrics-server -o jsonpath={.status.readyReplicas})
if [[ $STATUS -ne 1 ]]
then
echo "Deployment metrics-server not ready"
kubectl -n kube-system get events
exit 1
else
echo "Deployment metrics-server OK"
fi
- name: Setup Helm
run: |
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
helm version
- name: Install Cosign
uses: sigstore/cosign-installer@main
with:
cosign-release: 'v2.2.0'
- name: Create ephemeral keys
run: |
make test-generate-key
- name: Build test image
run: |
make test-image
- name: Install Cosignwebhook
run: |
make test-deploy
- name: Check Deployment
run: |
STATUS=$(kubectl -n cosignwebhook get deployment cosignwebhook -o jsonpath={.status.readyReplicas})
if [[ $STATUS -ne 1 ]]
then
echo "Deployment cosignwebhook not ready"
kubectl -n cosignwebhook get events
kubectl logs -n cosignwebhook deployment/cosignwebhook cosignwebhook
kubectl logs -n cosignwebhook deployment/cosignwebhook sccosign
kubectl logs -n cosignwebhook deployment/cosignwebhook scwebhook
kubectl describe -n cosignwebhook deployment/cosignwebhook
exit 1
else
echo "Deployment cosignwebhook OK"
fi
- name: Run End2End Tests
run: |
make test-e2e