Skip to content

Commit

Permalink
Fix the name of the workloads container image
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertKrawitz committed Sep 11, 2023
1 parent ec8e97a commit 41e3b4e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/clusterbuster/workloads/fio.workload
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function fio_create_deployment() {
local replicas=${4:-1}
local containers_per_pod=${5:-1}
local -i instance
container_image="quay.io/rkrawitz/clusterbuster-workloads:${arch}-v1.2"
container_image="quay.io/rkrawitz/clusterbuster-workloads:${arch}-perf-ci-v1.2"
create_sync_service "$namespace" "$((containers_per_pod * processes_per_pod * replicas * count))" \
"$((containers_per_pod * replicas * count))"
for instance in $(seq "$first_deployment" $((count + first_deployment - 1))) ; do
Expand Down
2 changes: 1 addition & 1 deletion lib/clusterbuster/workloads/sysbench.workload
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function sysbench_create_deployment() {
local replicas=${4:-1}
local containers_per_pod=${5:-1}
local -i instance
container_image="quay.io/rkrawitz/clusterbuster-workloads:${arch}-v1.2"
container_image="quay.io/rkrawitz/clusterbuster-workloads:${arch}-perf-ci-v1.2"
create_sync_service "$namespace" \
"$((containers_per_pod * processes_per_pod * replicas * count))" \
"$((containers_per_pod * replicas * count))"
Expand Down
2 changes: 1 addition & 1 deletion lib/clusterbuster/workloads/uperf.workload
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ function uperf_create_deployment() {
if ((((replicas * containers_per_pod * processes_per_pod) + 4) > ___uperf_port_addrs)) ; then
___uperf_port_addrs=$(((replicas * containers_per_pod * processes_per_pod) + 4))
fi
container_image="quay.io/rkrawitz/clusterbuster-workloads:${arch}-v1.2"
container_image="quay.io/rkrawitz/clusterbuster-workloads:${arch}-perf-ci-v1.2"
create_sync_service "$namespace" "$((containers_per_pod * replicas * count))" "$(( (containers_per_pod * replicas * count) + count))"

for instance in $(seq "$first_deployment" $((count + first_deployment - 1))) ; do
Expand Down

0 comments on commit 41e3b4e

Please sign in to comment.