Skip to content

Commit be90e7b

Browse files
authoredDec 9, 2023
ci: fix nightly chaos tests (#119)
* ci: fix nightly chaos tests * chore(semantic-release): fix version update in Dockerfile and values * increase p99 slo theshold
1 parent 6099c10 commit be90e7b

File tree

6 files changed

+39
-10
lines changed

6 files changed

+39
-10
lines changed
 

‎.releaserc.json

+17-1
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,30 @@
6868
"hasChanged": true
6969
}
7070
]
71+
},
72+
{
73+
"files": ["tests/chaos/fhir-pseudonymizer-values.yaml"],
74+
"from": "tag: .*",
75+
"to": "tag: v${nextRelease.version}",
76+
"results": [
77+
{
78+
"file": "tests/chaos/fhir-pseudonymizer-values.yaml",
79+
"hasChanged": true
80+
}
81+
]
7182
}
7283
]
7384
}
7485
],
7586
[
7687
"@semantic-release/git",
7788
{
78-
"assets": ["README.md", "compose/compose.yaml"]
89+
"assets": [
90+
"README.md",
91+
"compose/compose.yaml",
92+
"Dockerfile",
93+
"tests/chaos/fhir-pseudonymizer-values.yaml"
94+
]
7995
}
8096
]
8197
]

‎Taskfile.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ version: "3"
33
tasks:
44
build-stress-test-image:
55
desc: build the container image used for stress testing
6+
vars:
7+
BUILDKIT_PROGRESS: plain
68
cmds:
79
- docker build -t ghcr.io/miracum/fhir-pseudonymizer/stress-test:v1 --target=stress-test --iidfile=./stress-test-iid.txt .
810
sources:
@@ -14,7 +16,7 @@ tasks:
1416
desc: download and install the argo workflows cli
1517
dir: tests/chaos
1618
cmds:
17-
- curl -sL -o - https://github.com/argoproj/argo-workflows/releases/download/v3.4.9/argo-linux-amd64.gz | gunzip > argo
19+
- curl -sL -o - https://github.com/argoproj/argo-workflows/releases/download/v3.5.2/argo-linux-amd64.gz | gunzip > argo
1820
- chmod +x ./argo
1921
- ./argo version
2022
status:

‎src/FhirPseudonymizer.StressTests/StressTests.cs

+1-6
Original file line numberDiff line numberDiff line change
@@ -165,12 +165,7 @@ double failPercentageThreshold
165165
.WithWarmUpDuration(TimeSpan.FromSeconds(10))
166166
.WithLoadSimulations(
167167
Simulation.RampingConstant(copies: 10, during: TimeSpan.FromMinutes(5)),
168-
Simulation.KeepConstant(copies: 100, during: TimeSpan.FromMinutes(5)),
169-
Simulation.RampingInject(
170-
rate: 10,
171-
TimeSpan.FromMinutes(1),
172-
during: TimeSpan.FromMinutes(10)
173-
)
168+
Simulation.KeepConstant(copies: 100, during: TimeSpan.FromMinutes(10))
174169
);
175170

176171
var stats = NBomberRunner

‎tests/chaos/chaos-mesh-rbac.yaml

+14-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ metadata:
1717
rules:
1818
- apiGroups: [""]
1919
resources: ["pods", "namespaces"]
20-
verbs: ["get", "watch", "list"]
20+
verbs: ["get", "list", "watch", "create", "delete", "patch", "update"]
2121
- apiGroups: ["chaos-mesh.org"]
2222
resources: ["*"]
2323
verbs: ["get", "list", "watch", "create", "delete", "patch", "update"]
@@ -34,6 +34,19 @@ subjects:
3434
name: chaos-mesh-cluster-manager
3535
namespace: fhir-pseudonymizer
3636
roleRef:
37+
apiGroup: rbac.authorization.k8s.io
3738
kind: ClusterRole
3839
name: role-chaos-mesh-cluster-manager
40+
---
41+
apiVersion: rbac.authorization.k8s.io/v1
42+
kind: ClusterRoleBinding
43+
metadata:
44+
name: bind-chaos-mesh-cluster-manager-to-argo-workflow
45+
subjects:
46+
- kind: ServiceAccount
47+
name: chaos-mesh-cluster-manager
48+
namespace: fhir-pseudonymizer
49+
roleRef:
3950
apiGroup: rbac.authorization.k8s.io
51+
kind: ClusterRole
52+
name: argo-workflows-admin

‎tests/chaos/fhir-pseudonymizer-values.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
replicaCount: 3
22

3+
image:
4+
tag: v2.21.3
5+
36
anonymizationConfig: |
47
---
58
fhirVersion: R4

‎tests/iter8/experiment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ stringData:
143143
- metric: http/latency-mean
144144
limit: 25
145145
- metric: http/latency-p99.0
146-
limit: 75
146+
limit: 85
147147
---
148148
# Source: iter8/templates/k8s.yaml
149149
apiVersion: rbac.authorization.k8s.io/v1

0 commit comments

Comments
 (0)
Please sign in to comment.