-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.zuul.yaml
77 lines (73 loc) · 2.15 KB
/
.zuul.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
---
- job:
name: k8s-cluster-api-provider-e2e-abstract
abstract: true
parent: openstack-access-base
description: |
An abstract job for e2e testing of k8s-cluster-api-provider project.
This job is not intended to be run directly, but instead must be inherited from it.
pre-run: playbooks/dependencies.yaml
run: playbooks/e2e.yaml
cleanup-run: playbooks/cleanup.yaml # executed also when the job is canceled
vars:
wait_for_cluster: 600 # 10min
extra_env: {}
sonobouy:
enabled: false
scs_compliance:
enabled: false
- job:
name: k8s-cluster-api-provider-e2e-conformance
parent: k8s-cluster-api-provider-e2e-abstract
description: |
Run e2e tests of k8s-cluster-api-provider project using
[sonobuoy](https://sonobuoy.io/) with mode conformance and
SCS compliance checks meaning it will test if the Kubernetes
cluster is conformant to the CNCF and to the SCS.
timeout: 10800 # 3h
vars:
sonobouy:
enabled: true
mode: conformance
scs_compliance:
enabled: true
- job:
name: k8s-cluster-api-provider-e2e-quick
parent: k8s-cluster-api-provider-e2e-abstract
description: |
Run e2e tests of k8s-cluster-api-provider project using
[sonobuoy](https://sonobuoy.io/) with mode quick and
SCS compliance checks.
timeout: 3600 # 1h
vars:
sonobouy:
enabled: true
mode: quick
scs_compliance:
enabled: true
- job:
name: k8s-cluster-api-provider-scs-compliance-1.27
parent: k8s-cluster-api-provider-e2e-abstract
description: |
Run SCS compliance KaaS tests.
vars:
extra_env:
TF_VAR_kubernetes_version: 1.27.x
scs_compliance:
enabled: true
- project:
name: SovereignCloudStack/k8s-cluster-api-provider
default-branch: main
merge-mode: "squash-merge"
e2e-test:
jobs:
- k8s-cluster-api-provider-e2e-conformance
unlabel-on-update-e2e-test:
jobs:
- noop
e2e-quick-test:
jobs:
- k8s-cluster-api-provider-e2e-quick
unlabel-on-update-e2e-quick-test:
jobs:
- noop