Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/scripts/mocks/azure-mock.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ spec:
"--blobPort", "80",
"--queueHost", "0.0.0.0",
"--queuePort", "81",
"--skipApiVersionCheck",
]
name: azurite
ports:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/end2end.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,10 @@ jobs:
cache-dependency-path: tests/ctst/yarn.lock
- name: Install ctst test dependencies
working-directory: tests/ctst
run: yarn install
run: >-
yarn install --frozen-lock-file --network-concurrency 1 || (
yarn cache clean && yarn install --frozen-lock-file --network-concurrency 1
)
- name: Lint ctst tests
working-directory: tests/ctst
run: yarn lint
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION="2.13.9"
VERSION="2.13.10"

VERSION_HOTFIX=

Expand Down
8 changes: 4 additions & 4 deletions solution/deps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ backbeat:
dashboard: backbeat/backbeat-dashboards
image: backbeat
policy: backbeat/backbeat-policies
tag: 9.1.7
tag: 9.1.10
envsubst: BACKBEAT_TAG
busybox:
image: busybox
Expand All @@ -16,7 +16,7 @@ cloudserver:
sourceRegistry: ghcr.io/scality
dashboard: cloudserver/cloudserver-dashboards
image: cloudserver
tag: 9.1.13
tag: 9.1.14
envsubst: CLOUDSERVER_TAG
drctl:
sourceRegistry: ghcr.io/scality
Expand Down Expand Up @@ -113,7 +113,7 @@ sorbet:
policy: sorbet/sorbet-policies
dashboard: sorbet/sorbet-dashboards
image: sorbet
tag: v1.2.2
tag: v1.2.3
envsubst: SORBET_TAG
stern: # tail any pod logs with pattern matchin
tag: 1.33.0
Expand All @@ -130,7 +130,7 @@ vault:
zenko-operator:
sourceRegistry: ghcr.io/scality
image: zenko-operator
tag: v1.8.8
tag: v1.8.9
envsubst: ZENKO_OPERATOR_TAG
zookeeper:
sourceRegistry: ghcr.io/adobe/zookeeper-operator
Expand Down
2 changes: 2 additions & 0 deletions tests/ctst/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"private": true,
"dependencies": {
"@kubernetes/client-node": "^0.21.0",
"@types/node": "^20.1.1",
"@types/proper-lockfile": "^4.1.4",
"@types/qs": "^6.9.15",
"assert": "^2.1.0",
Expand All @@ -25,6 +26,7 @@
"@aws-sdk/client-s3": "^3.901.0",
"@aws-sdk/client-sts": "^3.901.0",
"@eslint/compat": "^1.1.1",
"@types/node": "^20.17.0",
"cli-testing": "github:scality/cli-testing.git#1.2.4",
"eslint": "^9.9.1",
"eslint-config-scality": "scality/Guidelines#8.3.0",
Expand Down
Loading