Skip to content

Commit a0c2f73

Browse files
fix: performance tests
Signed-off-by: nelson.parente <[email protected]>
1 parent 24f0c9b commit a0c2f73

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.github/workflows/dapr-perf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ jobs:
351351
DAPR_PERF_METRICS_PROMETHEUS_PUSHGATEWAY_URL: ${{ secrets.DAPR_PERF_METRICS_PROMETHEUS_PUSHGATEWAY_URL }}
352352
DAPR_PERF_METRICS_PROMETHEUS_PUSHGATEWAY_USERNAME: ${{ secrets.DAPR_PERF_METRICS_PROMETHEUS_PUSHGATEWAY_USERNAME }}
353353
DAPR_PERF_METRICS_PROMETHEUS_PUSHGATEWAY_PASSWORD: ${{ secrets.DAPR_PERF_METRICS_PROMETHEUS_PUSHGATEWAY_PASSWORD }}
354-
DAPR_SCHEDULER_IN_MEMORY_STORAGE: true
354+
DAPR_SCHEDULER_IN_MEMORY_STORAGE: false
355355
PULL_POLICY: IfNotPresent
356356
steps:
357357
- name: Setup test output
Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
# Build the k6 binary with the extension
2-
FROM golang:1.24.1 as builder
2+
FROM golang:1.24.3 AS builder
3+
4+
WORKDIR $GOPATH/src/go.k6.io/k6
35

46
RUN go install go.k6.io/xk6/cmd/xk6@latest
5-
RUN xk6 build --output /k6 --with github.com/grafana/xk6-output-prometheus-remote@latest --with github.com/grafana/xk6-disruptor@350f53204c65040e71757f98a330665a8f189f91
7+
RUN xk6 build v0.56.0 \
8+
--output /k6 \
9+
--with github.com/grafana/xk6-output-prometheus-remote@latest \
10+
--with github.com/grafana/[email protected]
611

712
# Use the operator's base image and override the k6 binary
8-
FROM loadimpact/k6:latest
13+
FROM grafana/k6:latest
914
COPY --from=builder /k6 /usr/bin/k6

tests/test-infra/azure-aks.bicep

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,6 @@ resource aks 'Microsoft.ContainerService/managedClusters@2023-05-01' = {
163163
enablePrivateCluster: false
164164
}
165165
addonProfiles: {
166-
httpApplicationRouting: {
167-
enabled: true
168-
}
169166
azurepolicy: {
170167
enabled: false
171168
}

0 commit comments

Comments
 (0)