Skip to content

Commit 531ffdb

Browse files
authored
Merge pull request ceph#60206 from VallariAg/wip-nvmeof-fix-test
qa/suites/nvmeof: Fix broken suite by using --no-group-append tag
2 parents 9316131 + 303f18b commit 531ffdb

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

qa/suites/nvmeof/basic/workloads/nvmeof_initiator.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
tasks:
22
- nvmeof:
33
installer: host.a
4-
gw_image: quay.io/ceph/nvmeof:1.2 # "default" is the image cephadm defaults to; change to test specific nvmeof images, example "latest"
4+
gw_image: quay.io/ceph/nvmeof:latest # "default" is the image cephadm defaults to; change to test specific nvmeof images, example "latest"
55
rbd:
66
pool_name: mypool
77
image_name_prefix: myimage
88
gateway_config:
99
subsystems_count: 3
1010
namespaces_count: 20
11-
cli_image: quay.io/ceph/nvmeof-cli:1.2
11+
cli_image: quay.io/ceph/nvmeof-cli:latest
1212

1313
- cephadm.wait_for_service:
1414
service: nvmeof.mypool.mygroup0

qa/suites/nvmeof/basic/workloads/nvmeof_namespaces.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
tasks:
22
- nvmeof:
33
installer: host.a
4-
gw_image: quay.io/ceph/nvmeof:1.2 # "default" is the image cephadm defaults to; change to test specific nvmeof images, example "latest"
4+
gw_image: quay.io/ceph/nvmeof:latest # "default" is the image cephadm defaults to; change to test specific nvmeof images, example "latest"
55
rbd:
66
pool_name: mypool
77
image_name_prefix: myimage
88
gateway_config:
99
subsystems_count: 3
1010
namespaces_count: 20
11-
cli_image: quay.io/ceph/nvmeof-cli:1.2
11+
cli_image: quay.io/ceph/nvmeof-cli:latest
1212

1313
- cephadm.wait_for_service:
1414
service: nvmeof.mypool.mygroup0

qa/suites/nvmeof/basic/workloads/nvmeof_scalability.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
tasks:
22
- nvmeof:
33
installer: host.a
4-
gw_image: quay.io/ceph/nvmeof:1.2 # "default" is the image cephadm defaults to; change to test specific nvmeof images, example "latest"
4+
gw_image: quay.io/ceph/nvmeof:latest # "default" is the image cephadm defaults to; change to test specific nvmeof images, example "latest"
55
rbd:
66
pool_name: mypool
77
image_name_prefix: myimage
88
gateway_config:
99
subsystems_count: 3
1010
namespaces_count: 20
11-
cli_image: quay.io/ceph/nvmeof-cli:1.2
11+
cli_image: quay.io/ceph/nvmeof-cli:latest
1212

1313
- cephadm.wait_for_service:
1414
service: nvmeof.mypool.mygroup0

qa/suites/nvmeof/thrash/gateway-initiator-setup/3-subsys-60-namespace.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
tasks:
22
- nvmeof:
33
installer: host.a
4-
gw_image: quay.io/ceph/nvmeof:1.2 # "default" is the image cephadm defaults to; change to test specific nvmeof images, example "latest"
4+
gw_image: quay.io/ceph/nvmeof:latest # "default" is the image cephadm defaults to; change to test specific nvmeof images, example "latest"
55
rbd:
66
pool_name: mypool
77
image_name_prefix: myimage
88
gateway_config:
99
subsystems_count: 3
1010
namespaces_count: 20 # each subsystem
11-
cli_image: quay.io/ceph/nvmeof-cli:1.2
11+
cli_image: quay.io/ceph/nvmeof-cli:latest
1212

1313
- cephadm.wait_for_service:
1414
service: nvmeof.mypool.mygroup0

qa/workunits/nvmeof/setup_subsystem.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ list_subsystems () {
2929
# add all subsystems
3030
for i in $(seq 1 $NVMEOF_SUBSYSTEMS_COUNT); do
3131
subsystem_nqn="${NVMEOF_SUBSYSTEMS_PREFIX}${i}"
32-
sudo podman run -it $NVMEOF_CLI_IMAGE --server-address $NVMEOF_DEFAULT_GATEWAY_IP_ADDRESS --server-port $NVMEOF_SRPORT subsystem add --subsystem $subsystem_nqn
32+
sudo podman run -it $NVMEOF_CLI_IMAGE --server-address $NVMEOF_DEFAULT_GATEWAY_IP_ADDRESS --server-port $NVMEOF_SRPORT subsystem add --subsystem $subsystem_nqn --no-group-append
3333
done
3434

3535
list_subsystems

0 commit comments

Comments
 (0)