File tree Expand file tree Collapse file tree 5 files changed +13
-11
lines changed Expand file tree Collapse file tree 5 files changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -351,7 +351,7 @@ jobs:
351
351
DAPR_PERF_METRICS_PROMETHEUS_PUSHGATEWAY_URL : ${{ secrets.DAPR_PERF_METRICS_PROMETHEUS_PUSHGATEWAY_URL }}
352
352
DAPR_PERF_METRICS_PROMETHEUS_PUSHGATEWAY_USERNAME : ${{ secrets.DAPR_PERF_METRICS_PROMETHEUS_PUSHGATEWAY_USERNAME }}
353
353
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
355
355
PULL_POLICY : IfNotPresent
356
356
steps :
357
357
- name : Setup test output
Original file line number Diff line number Diff line change 67
67
DAPR_GO_BUILD_TAGS : " subtlecrypto"
68
68
# Useful for upgrade/downgrade/compatibility tests
69
69
# TODO: Make this auto-populated based on GitHub's releases.
70
- DAPR_TEST_N_MINUS_1_IMAGE : " ghcr.io/dapr/daprd:1.13.0 "
71
- DAPR_TEST_N_MINUS_2_IMAGE : " ghcr.io/dapr/daprd:1.12.5 "
70
+ DAPR_TEST_N_MINUS_1_IMAGE : " ghcr.io/dapr/daprd:1.14.5 "
71
+ DAPR_TEST_N_MINUS_2_IMAGE : " ghcr.io/dapr/daprd:1.13.6 "
72
72
73
73
jobs :
74
74
deploy-infrastructure :
Original file line number Diff line number Diff line change 56
56
DAPR_NAMESPACE : dapr-tests
57
57
# Useful for upgrade/downgrade/compatibility tests
58
58
# TODO: Make this auto-populated based on GitHub's releases.
59
- DAPR_TEST_N_MINUS_1_IMAGE : " ghcr.io/dapr/daprd:1.13.0 "
60
- DAPR_TEST_N_MINUS_2_IMAGE : " ghcr.io/dapr/daprd:1.12.5 "
59
+ DAPR_TEST_N_MINUS_1_IMAGE : " ghcr.io/dapr/daprd:1.14.5 "
60
+ DAPR_TEST_N_MINUS_2_IMAGE : " ghcr.io/dapr/daprd:1.13.6 "
61
61
# Container registry where to cache e2e test images
62
62
DAPR_CACHE_REGISTRY : " dapre2eacr.azurecr.io"
63
63
PULL_POLICY : IfNotPresent
Original file line number Diff line number Diff line change 1
1
# 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
3
5
4
6
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]
6
11
7
12
# Use the operator's base image and override the k6 binary
8
- FROM loadimpact /k6:latest
13
+ FROM grafana /k6:latest
9
14
COPY --from=builder /k6 /usr/bin/k6
Original file line number Diff line number Diff line change @@ -163,9 +163,6 @@ resource aks 'Microsoft.ContainerService/managedClusters@2023-05-01' = {
163
163
enablePrivateCluster : false
164
164
}
165
165
addonProfiles : {
166
- httpApplicationRouting : {
167
- enabled : true
168
- }
169
166
azurepolicy : {
170
167
enabled : false
171
168
}
You can’t perform that action at this time.
0 commit comments