Skip to content

Commit 2f4aec6

Browse files
bump(release): v2.0.0 → v2.1.0
1 parent 167f6e9 commit 2f4aec6

21 files changed

+62
-51
lines changed

.cz.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ commitizen:
55
name: cz_conventional_commits
66
tag_format: $major.$minor.$patch$prerelease
77
update_changelog_on_bump: true
8-
version: 2.0.0
8+
version: 2.1.0
99
version_files:
1010
- charts/locust-k8s-operator/Chart.yaml:appVersion
1111
- charts/locust-k8s-operator/Chart.yaml:version

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 2.1.0 (2026-02-14)
2+
3+
### Feat
4+
5+
- **ci**: add Codacy coverage reporting to CI pipeline
6+
7+
### Fix
8+
9+
- add Artifact Hub metadata (#279)
10+
- **ci**: remove excessive SHA tag from Docker image releases (#278)
11+
112
## 2.0.0 (2026-02-13)
213

314
### Feat

charts/locust-k8s-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ type: application
2727
# This is the chart version. This version number should be incremented each time you make changes
2828
# to the chart and its templates, including the app version.
2929
# Versions are expected to follow Semantic Versioning (https://semver.org/)
30-
version: 2.0.1
30+
version: 2.1.0
3131

3232
# This is the version number of the application being deployed. This version number should be
3333
# incremented each time you make changes to the application. Versions are not expected to
3434
# follow Semantic Versioning. They should reflect the version the application is using.
3535
# It is recommended to use it with quotes.
36-
appVersion: "2.0.0"
36+
appVersion: "2.1.0"
3737

3838
kubeVersion: ">= 1.25.0-0"
3939
home: https://github.com/AbdelrhmanHamouda/locust-k8s-operator

docs/api_reference.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The v2 API provides a cleaner, grouped configuration structure with new features
3434

3535
| Field | Type | Required | Default | Description |
3636
|-------|------|----------|---------|-------------|
37-
| `image` | string | **Yes** | - | Container image for Locust pods (e.g., `locustio/locust:2.20.0`) |
37+
| `image` | string | **Yes** | - | Container image for Locust pods (e.g., `locustio/locust:2.43.3`) |
3838
| `imagePullPolicy` | string | No | `IfNotPresent` | Image pull policy: `Always`, `IfNotPresent`, `Never` |
3939
| `imagePullSecrets` | []LocalObjectReference | No | - | Secrets for pulling from private registries (specify as `- name: secret-name`) |
4040
| `master` | [MasterSpec](#masterspec) | **Yes** | - | Master pod configuration |
@@ -329,7 +329,7 @@ kind: LocustTest
329329
metadata:
330330
name: comprehensive-test
331331
spec:
332-
image: locustio/locust:2.20.0
332+
image: locustio/locust:2.43.3
333333
imagePullPolicy: IfNotPresent
334334

335335
master:
@@ -436,7 +436,7 @@ kind: LocustTest
436436
metadata:
437437
name: basic-test
438438
spec:
439-
image: locustio/locust:2.20.0
439+
image: locustio/locust:2.43.3
440440
masterCommandSeed: "--locustfile /lotest/src/test.py --host https://example.com"
441441
workerCommandSeed: "--locustfile /lotest/src/test.py"
442442
workerReplicas: 3

docs/comparison.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ kind: LocustTest
118118
metadata:
119119
name: my-test
120120
spec:
121-
image: locustio/locust:2.20.0
121+
image: locustio/locust:2.43.3
122122
testFiles:
123123
configMapRef: my-existing-configmap # Reference your existing ConfigMap
124124
master:

docs/getting_started/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ kind: LocustTest
6666
metadata:
6767
name: demo
6868
spec:
69-
image: locustio/locust:2.20.0 # Use a specific version
69+
image: locustio/locust:2.43.3 # Use a specific version
7070
testFiles:
7171
configMapRef: demo-test # Reference the test script ConfigMap
7272
master:

docs/how-to-guides/configuration/configure-kafka.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ kind: LocustTest
8888
metadata:
8989
name: kafka-test
9090
spec:
91-
image: locustio/locust:2.20.0
91+
image: locustio/locust:2.43.3
9292
testFiles:
9393
configMapRef: kafka-test-script
9494
master:

docs/how-to-guides/configuration/configure-resources.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ kind: LocustTest
5454
metadata:
5555
name: resource-optimized-test
5656
spec:
57-
image: locustio/locust:2.20.0
57+
image: locustio/locust:2.43.3
5858
testFiles:
5959
configMapRef: my-test
6060
master:
@@ -119,7 +119,7 @@ kind: LocustTest
119119
metadata:
120120
name: no-cpu-limit-test
121121
spec:
122-
image: locustio/locust:2.20.0
122+
image: locustio/locust:2.43.3
123123
testFiles:
124124
configMapRef: my-test
125125
master:

docs/how-to-guides/configuration/mount-volumes.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ kind: LocustTest
2929
metadata:
3030
name: pvc-volume-test
3131
spec:
32-
image: locustio/locust:2.20.0
32+
image: locustio/locust:2.43.3
3333
testFiles:
3434
configMapRef: my-test
3535
master:
@@ -82,7 +82,7 @@ kind: LocustTest
8282
metadata:
8383
name: configmap-volume-test
8484
spec:
85-
image: locustio/locust:2.20.0
85+
image: locustio/locust:2.43.3
8686
testFiles:
8787
configMapRef: my-test
8888
master:
@@ -128,7 +128,7 @@ kind: LocustTest
128128
metadata:
129129
name: secret-volume-test
130130
spec:
131-
image: locustio/locust:2.20.0
131+
image: locustio/locust:2.43.3
132132
testFiles:
133133
configMapRef: my-test
134134
master:
@@ -177,7 +177,7 @@ kind: LocustTest
177177
metadata:
178178
name: emptydir-volume-test
179179
spec:
180-
image: locustio/locust:2.20.0
180+
image: locustio/locust:2.43.3
181181
testFiles:
182182
configMapRef: my-test
183183
master:
@@ -285,7 +285,7 @@ kind: LocustTest
285285
metadata:
286286
name: multi-volume-test
287287
spec:
288-
image: locustio/locust:2.20.0
288+
image: locustio/locust:2.43.3
289289
testFiles:
290290
configMapRef: my-test
291291
master:

docs/how-to-guides/observability/configure-opentelemetry.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ kind: LocustTest
4545
metadata:
4646
name: otel-enabled-test
4747
spec:
48-
image: locustio/locust:2.20.0
48+
image: locustio/locust:2.43.3
4949
master:
5050
command: "--locustfile /lotest/src/test.py --host https://api.example.com"
5151
worker:

0 commit comments

Comments
 (0)