File tree Expand file tree Collapse file tree 1 file changed +61
-0
lines changed Expand file tree Collapse file tree 1 file changed +61
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
1
2
postsubmits :
2
3
etcd-io/etcd :
3
4
- name : post-etcd-build
@@ -23,3 +24,63 @@ postsubmits:
23
24
limits :
24
25
cpu : " 4"
25
26
memory : " 4Gi"
27
+ - name : post-etcd-verify
28
+ cluster : eks-prow-build-cluster
29
+ branches :
30
+ - main
31
+ decorate : true
32
+ annotations :
33
+ testgrid-dashboards : sig-etcd-postsubmits
34
+ testgrid-tab-name : post-etcd-verify
35
+ spec :
36
+ containers :
37
+ - image : us-central1-docker.pkg.dev/k8s-staging-test-infra/images/kubekins-e2e:v20241021-d3a4913879-master
38
+ command :
39
+ - /bin/bash
40
+ args :
41
+ - -c
42
+ - |
43
+ set -euo pipefail
44
+ export PATH=$GOPATH/bin:$PATH && make verify
45
+ export PATH=$GOPATH/bin:$PATH && make fix
46
+ DIFF=$(git status --porcelain)
47
+ if [ -n "$DIFF" ]; then
48
+ echo "These files were modified:"
49
+ echo
50
+ echo "$DIFF"
51
+ echo
52
+ exit 1
53
+ fi
54
+ resources :
55
+ requests :
56
+ cpu : " 4"
57
+ memory : " 4Gi"
58
+ limits :
59
+ cpu : " 4"
60
+ memory : " 4Gi"
61
+
62
+ - name : post-etcd-govulncheck
63
+ cluster : eks-prow-build-cluster
64
+ branches :
65
+ - main
66
+ decorate : true
67
+ annotations :
68
+ testgrid-dashboards : sig-etcd-postsubmits
69
+ testgrid-tab-name : post-etcd-govulncheck
70
+ spec :
71
+ containers :
72
+ - image : us-central1-docker.pkg.dev/k8s-staging-test-infra/images/kubekins-e2e:v20241021-d3a4913879-master
73
+ command :
74
+ - runner.sh
75
+ args :
76
+ - bash
77
+ - -c
78
+ - |
79
+ export PATH=$GOPATH/bin:$PATH && make run-govulncheck
80
+ resources :
81
+ requests :
82
+ cpu : " 4"
83
+ memory : " 4Gi"
84
+ limits :
85
+ cpu : " 4"
86
+ memory : " 4Gi"
You can’t perform that action at this time.
0 commit comments