-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
Copy pathsecurity-profiles-operator-presubmits.yaml
128 lines (124 loc) · 3.38 KB
/
security-profiles-operator-presubmits.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
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
presubmits:
kubernetes-sigs/security-profiles-operator:
- name: pull-security-profiles-operator-build
cluster: eks-prow-build-cluster
always_run: true
decorate: true
annotations:
testgrid-num-columns-recent: '30'
testgrid-create-test-group: 'true'
spec:
containers:
- image: public.ecr.aws/docker/library/golang:1.23
command:
- hack/pull-security-profiles-operator-build
resources:
limits:
cpu: 8
memory: 4Gi
requests:
cpu: 8
memory: 4Gi
- name: pull-security-profiles-operator-verify
cluster: eks-prow-build-cluster
always_run: true
decorate: true
annotations:
testgrid-num-columns-recent: '30'
testgrid-create-test-group: 'true'
spec:
containers:
- image: public.ecr.aws/docker/library/golang:1.23
command:
- hack/pull-security-profiles-operator-verify
resources:
limits:
cpu: 12
memory: 8Gi
requests:
cpu: 12
memory: 8Gi
- name: pull-security-profiles-operator-test-unit
cluster: eks-prow-build-cluster
always_run: true
decorate: true
annotations:
testgrid-num-columns-recent: '30'
testgrid-create-test-group: 'true'
spec:
containers:
- image: public.ecr.aws/docker/library/golang:1.23
command:
- hack/pull-security-profiles-operator-test-unit
resources:
limits:
cpu: 8
memory: 4Gi
requests:
cpu: 8
memory: 4Gi
- name: pull-security-profiles-operator-build-image
cluster: eks-prow-build-cluster
always_run: true
decorate: true
annotations:
testgrid-num-columns-recent: '30'
testgrid-create-test-group: 'true'
labels:
preset-service-account: "true"
preset-dind-enabled: "true"
preset-kind-volume-mounts: "true"
spec:
containers:
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20250121-4aed057712-master
securityContext:
privileged: true # for dind
resources:
requests:
memory: 1Gi
cpu: 2
limits:
memory: 1Gi
cpu: 2
command:
- runner.sh
args:
- hack/pull-security-profiles-operator-build-image
- name: pull-security-profiles-operator-test-e2e
cluster: eks-prow-build-cluster
always_run: true
decorate: true
annotations:
testgrid-num-columns-recent: '30'
testgrid-create-test-group: 'true'
labels:
preset-service-account: "true"
preset-dind-enabled: "true"
preset-kind-volume-mounts: "true"
spec:
hostNetwork: true
hostPID: true
containers:
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20250121-4aed057712-master
securityContext:
privileged: true # for dind
resources:
requests:
memory: 2Gi
cpu: 5
limits:
memory: 2Gi
cpu: 5
command:
- runner.sh
args:
- hack/pull-security-profiles-operator-test-e2e
volumeMounts:
- name: varlog
mountPath: /var/log/audit
readOnly: true
volumes:
- name: varlog
hostPath:
path: /var/log/audit
type: DirectoryOrCreate