Create config file EXPORT KUBECONFIG to /app/.kube/config Execute tests [2024-09-11 19:40:10 +0000] - Value of --debug: off [2024-09-11 19:40:10 +0000] - Value of --image-namespace: rhmessagingqe [2024-09-11 19:40:10 +0000] - Value of --image-tag: amq-broker-lpt [2024-09-11 19:40:10 +0000] - Value of --make-target: operator_test_smoke operator_copy_test_results [2024-09-11 19:40:10 +0000] - Value of --namespace: claire [2024-09-11 19:40:10 +0000] - Value of --make-envvar: OLM=true [2024-09-11 19:40:10 +0000] - Value of --kubeconfig: [2024-09-11 19:40:10 +0000] - Value of --test-completion-wait-check: 60 [2024-09-11 19:40:10 +0000] - amq-broker image tag detected, using file Makefile.downstream as makefile fatal: not a git repository (or any of the parent directories): .git [2024-09-11 19:40:10 +0000] - Using operator-suite/container/scripts/run-test.sh from git commit id: fail to get commit id. It was not found or not in a git repo [2024-09-11 19:40:10 +0000] - Creating Namespace claire apiVersion: v1 kind: Namespace metadata: name: claire namespace/claire created [2024-09-11 19:40:15 +0000] - Creating secret for kubeconfig from /app/.kube/config secret/claire-kubeconfig created [2024-09-11 19:40:21 +0000] - Creating config map for run script --- apiVersion: v1 kind: ConfigMap metadata: name: run-script namespace: claire data: run.sh: |- #!/usr/bin/env bash TEST_RESULTS_DIR="/app/test-results" OPERATOR_TEST_RESULTS_DIR="${TEST_RESULTS_DIR}/operator-suite" LOG_FILE="${TEST_RESULTS_DIR}/tests.execution.log" function log() { if [[ "$1" == "" ]]; then echo "$1" | tee -a "${LOG_FILE}" else echo "[$(date "+%Y-%m-%d %H:%M:%S %z")] - $1" | tee -a "${LOG_FILE}" fi } log "Starting..." sleep 15 log "" log "Running with git commit id: ${COMMIT_ID}" log "Running with image: ${CONTAINER_IMAGE}" log "Running with image id: $(kubectl -n claire get pod claire-test-suite -o jsonpath='{.status.containerStatuses[*].imageID}')" log "" log "Running with container env variables:" kubectl -n claire get pod claire-test-suite -o jsonpath='{.spec.containers[*].env}' log "" log "" log "All container environment variables:" env log "" log "Creating test-results directory: ${OPERATOR_TEST_RESULTS_DIR}" mkdir -p "${OPERATOR_TEST_RESULTS_DIR}" log "" log "Starting Claire execution at $(date)" | tee "${TEST_RESULTS_DIR}/tests.execution.started" log "" log "Executing make with params: -f Makefile.downstream operator_test_smoke operator_copy_test_results" log "" make -f Makefile.downstream operator_test_smoke operator_copy_test_results | tee -a "${LOG_FILE}" log "" log "Finished Claire execution $(date)" | tee "${TEST_RESULTS_DIR}/tests.execution.completed" log "" log "sleeping forever" log "" sleep 99d configmap/run-script created [2024-09-11 19:40:26 +0000] - Creating test suite pod --- apiVersion: v1 kind: Pod metadata: name: claire-test-suite namespace: claire spec: restartPolicy: Never securityContext: runAsNonRoot: true seccompProfile: type: RuntimeDefault containers: - name: claire-test-suite image: quay.io/rhmessagingqe/claire:amq-broker-lpt imagePullPolicy: Always command: ["/app/run.sh"] env: - name: CONTAINER_IMAGE value: quay.io/rhmessagingqe/claire:amq-broker-lpt - name: OLM value: "true" - name: MVN_TEST_ADDITIONAL_ARGS value: -Dfailsafe.rerunFailingTestsCount=2 - name: TEST_LOG_LEVEL value: DEBUG - name: MVN_ADDITIONAL_PARAMS value: '"--offline"' - name: OLM_USE_DEFAULT_CHANNEL value: "true" volumeMounts: - name: run-script-volume mountPath: /app/run.sh readOnly: true subPath: run.sh - name: claire-kubeconfig-secret mountPath: /app/.kube readOnly: true - mountPath: "/app/test-results" name: claire-storage securityContext: privileged: false allowPrivilegeEscalation: false capabilities: drop: ["ALL"] volumes: - name: run-script-volume configMap: defaultMode: 0750 name: run-script - name: claire-kubeconfig-secret secret: secretName: claire-kubeconfig - name: claire-storage emptyDir: {} pod/claire-test-suite created [2024-09-11 19:40:31 +0000] - Waiting claire-test-suite pod reach Running state pod/claire-test-suite condition met [2024-09-11 19:40:37 +0000] - Waiting execution to finish [2024-09-11 19:40:37 +0000] - Execution not completed. Waiting for 60 seconds before check again [2024-09-11 19:41:37 +0000] - Execution not completed. Waiting for 60 seconds before check again [2024-09-11 19:42:37 +0000] - Execution not completed. Waiting for 60 seconds before check again [2024-09-11 19:43:37 +0000] - Execution not completed. Waiting for 60 seconds before check again [2024-09-11 19:44:38 +0000] - Execution not completed. Waiting for 60 seconds before check again [2024-09-11 19:45:38 +0000] - Execution not completed. Waiting for 60 seconds before check again [2024-09-11 19:46:38 +0000] - Execution not completed. Waiting for 60 seconds before check again [2024-09-11 19:47:38 +0000] - Execution not completed. Waiting for 60 seconds before check again [2024-09-11 19:48:38 +0000] - Copying test results, logs and additional files to /app/test-results tar: Removing leading `/' from member names tar: Removing leading `/' from hard link targets [2024-09-11 19:48:39 +0000] - Displaying logs [2024-09-11 19:40:51 +0000] - Starting Claire execution at Wed Sep 11 07:40:51 PM UTC 2024 [2024-09-11 19:40:36 +0000] - Starting... [2024-09-11 19:40:51 +0000] - Running with git commit id: 3e0f90a87e9242fb4a9582a349359f49ecf0e5ba [2024-09-11 19:40:51 +0000] - Running with image: quay.io/rhmessagingqe/claire:amq-broker-lpt [2024-09-11 19:40:51 +0000] - Running with image id: quay.io/rhmessagingqe/claire@sha256:9bb4d1cf9946568e63d1728a2db337424fe679d592fd956e2bc7b37077138f6c [2024-09-11 19:40:51 +0000] - Running with container env variables: [2024-09-11 19:40:51 +0000] - All container environment variables: [2024-09-11 19:40:51 +0000] - Creating test-results directory: /app/test-results/operator-suite [2024-09-11 19:40:51 +0000] - Starting Claire execution at Wed Sep 11 07:40:51 PM UTC 2024 [2024-09-11 19:40:51 +0000] - Executing make with params: -f Makefile.downstream operator_test_smoke operator_copy_test_results echo "MAVEN_OPTS: -Daether.connector.https.securityMode=insecure -Dmaven.repo.local=/app/.m2/repository" ; echo "MAVEN_ARGS: " ; mvn --no-transfer-progress --batch-mode --update-snapshots -s /app/settings.xml "--offline" failsafe:integration-test --projects :operator-suite -Dgroups="smoke" MAVEN_OPTS: -Daether.connector.https.securityMode=insecure -Dmaven.repo.local=/app/.m2/repository MAVEN_ARGS: [INFO] Scanning for projects... [INFO] [INFO] ---------------------< io.brokerqe:operator-suite >--------------------- [INFO] Building operator-suite 0.1-SNAPSHOT [INFO] from pom.xml [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- failsafe:3.2.5:integration-test (default-cli) @ operator-suite --- [INFO] Using auto detected provider org.apache.maven.surefire.junitplatform.JUnitPlatformProvider [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- 2024-09-11T19:40:54.443Z INFO [][ClaireExecutionListener:80] [TestPlan] Will execute following 6 tests: ClusteredOperatorSmokeTests.simpleBrokerClusteredDeploymentTest() SmokeTests.sendReceiveCoreMessageTest(),SmokeTests.testDefaultOperatorVersion(),SmokeTests.sendReceiveSystemTestsClientMessageTest(),SmokeTests.testDefaultBrokerVersion(),SmokeTests.testConsoleProvidedVersion() 2024-09-11T19:40:55.794Z INFO [][KubeClient:111] [default] Created KubernetesClient for OPENSHIFT: 1.29 - https://api.ci-rosa-s-uqn8.ka8u.s1.devshift.org:6443/ 2024-09-11T19:40:55.845Z INFO [][Environment:73] [ENV] Found mapping of provided {operator={candidate=7.12.2.OPR.1.CR1, released=7.12.2.OPR.1.CR1}, standalone={candidate=7.12.2.CR1, released=7.12.2.CR1}, upstream=2.33.0, upstream_operator=main} into 7.12.2 2024-09-11T19:40:55.846Z INFO [][Environment:171] List of all used Claire related variables: KUBE_CONTEXT=default DISABLE_RANDOM_NAMESPACES=false CLUSTER_OPERATOR_MANAGED=true COLLECT_TEST_DATA=true DUMP_ENABLED=false TEARDOWN_ENV=true TEST_LOG_LEVEL=DEBUG ARTEMIS_VERSION=7.12.2 ARTEMIS_TEST_VERSION=VERSION_2_33 OLM_INSTALLATION=true OLM=true LOGS_LOCATION=/app/operator-suite/test-logs/2024-09-11_19-40-54 TMP_LOCATION=/app/operator-suite/test-tmp/2024-09-11_19-40-54 2024-09-11T19:40:55.846Z INFO [][ClaireExecutionListener:89] All logging changed to level: DEBUG 2024-09-11T19:40:55.848Z DEBUG [][OperatorExecutionListener:33] Setup environment finished [INFO] Running io.brokerqe.claire.smoke.ClusteredOperatorSmokeTests 2024-09-11T19:40:55.904Z INFO [][TestSeparator:28] ---------------------------------------------------------------------------- 2024-09-11T19:40:55.905Z INFO [][TestSeparator:29] Started Class: io.brokerqe.claire.smoke.ClusteredOperatorSmokeTests 2024-09-11T19:40:55.938Z INFO [][KubeClient:149] Creating new namespace cluster-tests-90b 2024-09-11T19:40:55.980Z DEBUG [default][TestUtils:179] [WAIT] Creating namespace 2024-09-11T19:40:56.039Z INFO [default][KubeClient:149] Creating new namespace cluster-tests-90ba 2024-09-11T19:40:56.071Z DEBUG [default][TestUtils:179] [WAIT] Creating namespace 2024-09-11T19:40:56.113Z INFO [default][KubeClient:149] Creating new namespace cluster-tests-90bb 2024-09-11T19:40:56.137Z DEBUG [default][TestUtils:179] [WAIT] Creating namespace 2024-09-11T19:40:56.166Z INFO [default][ClusteredOperatorSmokeTests:40] [cluster-tests-90b] Creating new namespaces cluster-tests-90b cluster-tests-90ba cluster-tests-90bb 2024-09-11T19:40:56.167Z INFO [default][ResourceManager:152] Deploying Artemis CO 2024-09-11T19:40:56.168Z DEBUG [default][KubeClient:140] Using namespace: cluster-tests-90b 2024-09-11T19:40:56.240Z INFO [default][ArtemisCloudClusterOperatorOlm:97] [cluster-tests-90b] Going to install amq-broker-operator.v7.12.2-opr-1 from channel: 7.12.x 2024-09-11T19:40:56.240Z INFO [default][ArtemisCloudClusterOperatorOlm:186] [OLM] Deploying Artemis Cluster Operator in namespace cluster-tests-90b 2024-09-11T19:40:56.265Z INFO [default][KubeClient:538] [OLM][cluster-tests-90b] Creating OperatorGroup 2024-09-11T19:40:56.266Z DEBUG [default][KubeClient:539] [OLM][cluster-tests-90b] apiVersion: operators.coreos.com/v1 kind: OperatorGroup metadata: name: amq-broker-rhel8-ac namespace: cluster-tests-90b spec: targetNamespaces: - cluster-tests-90b - cluster-tests-90ba 2024-09-11T19:40:56.292Z INFO [default][ArtemisCloudClusterOperatorOlm:147] [OLM] Creating OperatorGroup 2024-09-11T19:40:56.293Z INFO [default][ArtemisCloudClusterOperatorOlm:135] [OLM] Creating Subscription 2024-09-11T19:40:56.293Z DEBUG [default][ArtemisCloudClusterOperatorOlm:152] [cluster-tests-90b] [OLM] apiVersion: operators.coreos.com/v1alpha1 kind: Subscription metadata: name: amq-broker-rhel8-ac namespace: cluster-tests-90b spec: channel: 7.12.x installPlanApproval: Automatic name: amq-broker-rhel8 source: redhat-operators sourceNamespace: openshift-marketplace 2024-09-11T19:40:56.358Z WARN [default][VersionUsageUtils:60] The client is using resource type 'subscriptions' with unstable version 'v1alpha1' 2024-09-11T19:40:56.368Z DEBUG [default][TestUtils:179] [WAIT] subscription to be active 2024-09-11T19:40:56.382Z DEBUG [default][TestUtils:179] [WAIT] broker-operator ClusterServiceVersion to be 'Succeeded' 2024-09-11T19:40:56.384Z WARN [default][VersionUsageUtils:60] The client is using resource type 'clusterserviceversions' with unstable version 'v1alpha1' 2024-09-11T19:41:11.535Z DEBUG [default][ArtemisCloudClusterOperatorOlm:171] [cluster-tests-90b] Checking for status phase of amq-broker-operator.v7.12.2-opr-1 2024-09-11T19:41:16.568Z DEBUG [default][ArtemisCloudClusterOperatorOlm:171] [cluster-tests-90b] Checking for status phase of amq-broker-operator.v7.12.2-opr-1 2024-09-11T19:41:16.569Z DEBUG [default][TestUtils:179] [WAIT] deployment to be active 2024-09-11T19:41:31.573Z INFO [default][ArtemisCloudClusterOperatorOlm:176] [cluster-tests-90b] [OLM] Subscription & installplans successfully installed 2024-09-11T19:41:31.573Z INFO [default][ArtemisCloudClusterOperatorOlm:188] [cluster-tests-90b] [OLM] Cluster operator amq-broker-controller-manager successfully deployed! 2024-09-11T19:41:31.579Z INFO [default][TestSeparator:34] ---------------------------------------------------------------------------- 2024-09-11T19:41:31.579Z INFO [default][TestSeparator:35] [1/6] Started: io.brokerqe.claire.smoke.ClusteredOperatorSmokeTests.simpleBrokerClusteredDeploymentTest 2024-09-11T19:41:31.582Z INFO [default][ClusteredOperatorSmokeTests:62] [cluster-tests-90b] Expecting PASS: Deploy broker in namespace cluster-tests-90ba 2024-09-11T19:41:31.761Z WARN [default][VersionUsageUtils:60] The client is using resource type 'activemqartemises' with unstable version 'v1beta1' 2024-09-11T19:41:31.771Z INFO [default][ResourceManager:272] [cluster-tests-90b] Created ActiveMQArtemis ActiveMQArtemis() 2024-09-11T19:41:31.771Z INFO [default][ResourceManager:543] [cluster-tests-90b] Waiting 60s for creation of broker artemis-broker 2024-09-11T19:41:31.773Z DEBUG [default][TestUtils:179] [WAIT] StatefulSet to be ready 2024-09-11T19:41:56.835Z DEBUG [default][ResourceManager:581] [cluster-tests-90b] Waiting for expected broker pods count: 1 2024-09-11T19:41:56.837Z DEBUG [default][TestUtils:179] [WAIT] all broker pods to start 2024-09-11T19:41:56.875Z INFO [default][ClusteredOperatorSmokeTests:65] [cluster-tests-90b] Check if broker pod with name artemis-broker is present. 2024-09-11T19:41:56.906Z INFO [default][ResourceManager:595] [cluster-tests-90b] Waiting 60s for deletion of broker artemis-broker 2024-09-11T19:41:56.907Z DEBUG [default][TestUtils:179] [WAIT] ActiveMQArtemis statefulSet & related pods to be removed 2024-09-11T19:42:01.948Z INFO [default][ResourceManager:330] [cluster-tests-90b] Deleted ActiveMQArtemis artemis-broker 2024-09-11T19:42:01.958Z INFO [default][ClusteredOperatorSmokeTests:74] [cluster-tests-90b] Expecting PASS: Deploy broker in namespace cluster-tests-90ba 2024-09-11T19:42:02.011Z INFO [default][ResourceManager:272] [cluster-tests-90ba] Created ActiveMQArtemis ActiveMQArtemis() 2024-09-11T19:42:02.012Z INFO [default][ResourceManager:543] [cluster-tests-90ba] Waiting 60s for creation of broker artemis-broker 2024-09-11T19:42:02.012Z DEBUG [default][TestUtils:179] [WAIT] StatefulSet to be ready 2024-09-11T19:42:17.041Z DEBUG [default][ResourceManager:581] [cluster-tests-90ba] Waiting for expected broker pods count: 1 2024-09-11T19:42:17.042Z DEBUG [default][TestUtils:179] [WAIT] all broker pods to start 2024-09-11T19:42:17.057Z INFO [default][ClusteredOperatorSmokeTests:77] [cluster-tests-90ba] Check if broker pod with name artemis-broker is present. 2024-09-11T19:42:17.075Z INFO [default][ResourceManager:595] [cluster-tests-90ba] Waiting 60s for deletion of broker artemis-broker 2024-09-11T19:42:17.075Z DEBUG [default][TestUtils:179] [WAIT] ActiveMQArtemis statefulSet & related pods to be removed 2024-09-11T19:42:22.093Z INFO [default][ResourceManager:330] [cluster-tests-90ba] Deleted ActiveMQArtemis artemis-broker 2024-09-11T19:42:22.098Z INFO [default][ClusteredOperatorSmokeTests:85] [cluster-tests-90b] Expecting FAIL: deploy broker in namespace cluster-tests-90bb 2024-09-11T19:42:22.136Z INFO [default][ResourceManager:272] [cluster-tests-90bb] Created ActiveMQArtemis ActiveMQArtemis() 2024-09-11T19:42:22.140Z INFO [default][ResourceManager:543] [cluster-tests-90bb] Waiting 30s for creation of broker artemis-broker 2024-09-11T19:42:22.140Z DEBUG [default][TestUtils:179] [WAIT] StatefulSet to be ready 2024-09-11T19:42:52.168Z INFO [default][ResourceManager:595] [cluster-tests-90bb] Waiting 60s for deletion of broker artemis-broker 2024-09-11T19:42:52.168Z DEBUG [default][TestUtils:179] [WAIT] ActiveMQArtemis statefulSet & related pods to be removed 2024-09-11T19:42:52.182Z INFO [default][ResourceManager:330] [cluster-tests-90bb] Deleted ActiveMQArtemis artemis-broker 2024-09-11T19:42:52.185Z INFO [default][TestSeparator:43] Finished: io.brokerqe.claire.smoke.ClusteredOperatorSmokeTests.simpleBrokerClusteredDeploymentTest 2024-09-11T19:42:52.186Z INFO [default][TestSeparator:44] ---------------------------------------------------------------------------- 2024-09-11T19:42:52.193Z DEBUG [default][ArtemisCloudClusterOperatorOlm:193] [cluster-tests-90b] Going to undeploy [amq-broker-rhel8-ac, amq-broker-rhel8-ac] 2024-09-11T19:42:52.221Z INFO [default][ArtemisCloudClusterOperatorOlm:195] [cluster-tests-90b] [OLM] Successfully undeployed ArtemisCloudOperator 2024-09-11T19:42:52.221Z INFO [default][KubeClient:160] Deleting namespace cluster-tests-90b 2024-09-11T19:42:52.237Z DEBUG [default][TestUtils:179] [WAIT] Deletion of namespace 2024-09-11T19:43:06.355Z INFO [default][KubeClient:160] Deleting namespace cluster-tests-90ba 2024-09-11T19:43:06.370Z DEBUG [default][TestUtils:179] [WAIT] Deletion of namespace 2024-09-11T19:43:14.442Z INFO [default][KubeClient:160] Deleting namespace cluster-tests-90bb 2024-09-11T19:43:14.456Z DEBUG [default][TestUtils:179] [WAIT] Deletion of namespace 2024-09-11T19:43:22.522Z INFO [default][TestSeparator:50] Finished Class: io.brokerqe.claire.smoke.ClusteredOperatorSmokeTests 2024-09-11T19:43:22.523Z INFO [default][TestSeparator:51] ---------------------------------------------------------------------------- [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 146.6 s -- in io.brokerqe.claire.smoke.ClusteredOperatorSmokeTests [INFO] Running io.brokerqe.claire.smoke.SmokeTests 2024-09-11T19:43:22.531Z INFO [default][TestSeparator:28] ---------------------------------------------------------------------------- 2024-09-11T19:43:22.532Z INFO [default][TestSeparator:29] Started Class: io.brokerqe.claire.smoke.SmokeTests 2024-09-11T19:43:22.532Z INFO [default][KubeClient:149] Creating new namespace smoke-tests-d95 2024-09-11T19:43:22.547Z DEBUG [default][TestUtils:179] [WAIT] Creating namespace 2024-09-11T19:43:22.565Z INFO [default][ResourceManager:152] Deploying Artemis CO 2024-09-11T19:43:22.566Z DEBUG [default][KubeClient:140] Using namespace: smoke-tests-d95 2024-09-11T19:43:22.584Z INFO [default][ArtemisCloudClusterOperatorOlm:97] [smoke-tests-d95] Going to install amq-broker-operator.v7.12.2-opr-1 from channel: 7.12.x 2024-09-11T19:43:22.584Z INFO [default][ArtemisCloudClusterOperatorOlm:186] [OLM] Deploying Artemis Cluster Operator in namespace smoke-tests-d95 2024-09-11T19:43:22.590Z INFO [default][KubeClient:538] [OLM][smoke-tests-d95] Creating OperatorGroup 2024-09-11T19:43:22.590Z DEBUG [default][KubeClient:539] [OLM][smoke-tests-d95] apiVersion: operators.coreos.com/v1 kind: OperatorGroup metadata: name: amq-broker-rhel8-4e namespace: smoke-tests-d95 spec: targetNamespaces: - smoke-tests-d95 2024-09-11T19:43:22.600Z INFO [default][ArtemisCloudClusterOperatorOlm:147] [OLM] Creating OperatorGroup 2024-09-11T19:43:22.601Z INFO [default][ArtemisCloudClusterOperatorOlm:135] [OLM] Creating Subscription 2024-09-11T19:43:22.601Z DEBUG [default][ArtemisCloudClusterOperatorOlm:152] [smoke-tests-d95] [OLM] apiVersion: operators.coreos.com/v1alpha1 kind: Subscription metadata: name: amq-broker-rhel8-4e namespace: smoke-tests-d95 spec: channel: 7.12.x installPlanApproval: Automatic name: amq-broker-rhel8 source: redhat-operators sourceNamespace: openshift-marketplace 2024-09-11T19:43:22.615Z DEBUG [default][TestUtils:179] [WAIT] subscription to be active 2024-09-11T19:43:22.624Z DEBUG [default][TestUtils:179] [WAIT] broker-operator ClusterServiceVersion to be 'Succeeded' 2024-09-11T19:43:27.652Z DEBUG [default][ArtemisCloudClusterOperatorOlm:171] [smoke-tests-d95] Checking for status phase of amq-broker-operator.v7.12.2-opr-1 2024-09-11T19:43:32.689Z DEBUG [default][ArtemisCloudClusterOperatorOlm:171] [smoke-tests-d95] Checking for status phase of amq-broker-operator.v7.12.2-opr-1 2024-09-11T19:43:32.690Z DEBUG [default][TestUtils:179] [WAIT] deployment to be active 2024-09-11T19:43:38.243Z INFO [default][ArtemisCloudClusterOperatorOlm:176] [smoke-tests-d95] [OLM] Subscription & installplans successfully installed 2024-09-11T19:43:38.243Z INFO [default][ArtemisCloudClusterOperatorOlm:188] [smoke-tests-d95] [OLM] Cluster operator amq-broker-controller-manager successfully deployed! 2024-09-11T19:43:38.245Z INFO [default][TestSeparator:34] ---------------------------------------------------------------------------- 2024-09-11T19:43:38.245Z INFO [default][TestSeparator:35] [2/6] Started: io.brokerqe.claire.smoke.SmokeTests.sendReceiveCoreMessageTest 2024-09-11T19:43:38.277Z INFO [default][ResourceManager:272] [smoke-tests-d95] Created ActiveMQArtemis ActiveMQArtemis() 2024-09-11T19:43:38.278Z INFO [default][ResourceManager:543] [smoke-tests-d95] Waiting 60s for creation of broker artemis-broker 2024-09-11T19:43:38.278Z DEBUG [default][TestUtils:179] [WAIT] StatefulSet to be ready 2024-09-11T19:43:53.311Z DEBUG [default][ResourceManager:581] [smoke-tests-d95] Waiting for expected broker pods count: 1 2024-09-11T19:43:53.311Z DEBUG [default][TestUtils:179] [WAIT] all broker pods to start 2024-09-11T19:43:53.338Z WARN [default][VersionUsageUtils:60] The client is using resource type 'activemqartemisaddresses' with unstable version 'v1beta1' 2024-09-11T19:43:58.351Z INFO [default][ResourceManager:359] [smoke-tests-d95] Created ActiveMQArtemisAddress artemis-address-queue 2024-09-11T19:43:58.371Z INFO [default][ExecutorOperator:94] [smoke-tests-d95] artemis-broker-ss-0 Running background command: [./amq-broker/bin/artemis consumer --url tcp://10.131.0.17:61616 --protocol core --destination fqqn://myAddress0::myQueue0 --message-count 10] 2024-09-11T19:43:58.473Z DEBUG [default][ExecutorOperator:79] [smoke-tests-d95] artemis-broker-ss-0 Running command: ./amq-broker/bin/artemis producer --url tcp://10.131.0.17:61616 --protocol core --destination fqqn://myAddress0::myQueue0 --message-count 10 2024-09-11T19:44:01.044Z DEBUG [default][BundledMessagingClient:137] [artemis-broker-ss-0] NOTE: Picked up JDK_JAVA_OPTIONS: -Dbroker.properties=/amq/extra/secrets/artemis-broker-props/broker.properties Connection brokerURL = tcp://10.131.0.17:61616 Producer ActiveMQQueue[myAddress0::myQueue0], thread=0 Started to calculate elapsed time ... Producer ActiveMQQueue[myAddress0::myQueue0], thread=0 Produced: 10 messages Producer ActiveMQQueue[myAddress0::myQueue0], thread=0 Elapsed time in second : 0 s Producer ActiveMQQueue[myAddress0::myQueue0], thread=0 Elapsed time in milli second : 64 milli seconds 2024-09-11T19:44:01.045Z DEBUG [default][ExecutorOperator:121] NOTE: Picked up JDK_JAVA_OPTIONS: -Dbroker.properties=/amq/extra/secrets/artemis-broker-props/broker.properties Connection brokerURL = tcp://10.131.0.17:61616 Consumer:: filter = null Consumer ActiveMQQueue[myAddress0::myQueue0], thread=0 wait until 10 messages are consumed Consumer ActiveMQQueue[myAddress0::myQueue0], thread=0 Consumed: 10 messages Consumer ActiveMQQueue[myAddress0::myQueue0], thread=0 Elapsed time in second : 0 s Consumer ActiveMQQueue[myAddress0::myQueue0], thread=0 Elapsed time in milli second : 122 milli seconds Consumer ActiveMQQueue[myAddress0::myQueue0], thread=0 Consumed: 10 messages Consumer ActiveMQQueue[myAddress0::myQueue0], thread=0 Consumer thread finished 2024-09-11T19:44:01.055Z INFO [default][ResourceManager:405] [smoke-tests-d95] Deleted ActiveMQArtemisAddress artemis-address-queue 2024-09-11T19:44:01.065Z INFO [default][ResourceManager:595] [smoke-tests-d95] Waiting 60s for deletion of broker artemis-broker 2024-09-11T19:44:01.066Z DEBUG [default][TestUtils:179] [WAIT] ActiveMQArtemis statefulSet & related pods to be removed 2024-09-11T19:44:06.106Z INFO [default][ResourceManager:330] [smoke-tests-d95] Deleted ActiveMQArtemis artemis-broker 2024-09-11T19:44:06.107Z INFO [default][TestSeparator:43] Finished: io.brokerqe.claire.smoke.SmokeTests.sendReceiveCoreMessageTest 2024-09-11T19:44:06.107Z INFO [default][TestSeparator:44] ---------------------------------------------------------------------------- 2024-09-11T19:44:06.109Z INFO [default][TestSeparator:34] ---------------------------------------------------------------------------- 2024-09-11T19:44:06.110Z INFO [default][TestSeparator:35] [3/6] Started: io.brokerqe.claire.smoke.SmokeTests.testDefaultOperatorVersion 2024-09-11T19:44:06.143Z DEBUG [default][TestUtils:370] Parsed version: 7.12.2 from 7.12.2-opr-1. 2024-09-11T19:44:06.151Z INFO [default][SmokeTests:384] [smoke-tests-d95] Check expected version 7.12.2 in amq-broker-controller-manager-6d849c96f-5w667 pod logs 2024-09-11T19:44:06.188Z INFO [default][TestSeparator:43] Finished: io.brokerqe.claire.smoke.SmokeTests.testDefaultOperatorVersion 2024-09-11T19:44:06.189Z INFO [default][TestSeparator:44] ---------------------------------------------------------------------------- 2024-09-11T19:44:06.190Z INFO [default][TestSeparator:34] ---------------------------------------------------------------------------- 2024-09-11T19:44:06.190Z INFO [default][TestSeparator:35] [4/6] Started: io.brokerqe.claire.smoke.SmokeTests.sendReceiveSystemTestsClientMessageTest 2024-09-11T19:44:06.226Z DEBUG [default][StClientDeployment:108] [smoke-tests-d95] Wait 30s for systemtest-clients deployment to be ready 2024-09-11T19:44:13.042Z INFO [default][ResourceManager:272] [smoke-tests-d95] Created ActiveMQArtemis ActiveMQArtemis() 2024-09-11T19:44:13.042Z INFO [default][ResourceManager:543] [smoke-tests-d95] Waiting 60s for creation of broker artemis-broker 2024-09-11T19:44:13.042Z DEBUG [default][TestUtils:179] [WAIT] StatefulSet to be ready 2024-09-11T19:44:28.077Z DEBUG [default][ResourceManager:581] [smoke-tests-d95] Waiting for expected broker pods count: 1 2024-09-11T19:44:28.077Z DEBUG [default][TestUtils:179] [WAIT] all broker pods to start 2024-09-11T19:44:28.094Z INFO [default][AbstractSystemTests:228] [smoke-tests-d95] Adding acceptors [amqp-owire-acceptor] to broker artemis-broker 2024-09-11T19:44:29.150Z INFO [default][KubeClient:318] [smoke-tests-d95] Waiting 60s for pod artemis-broker reload 2024-09-11T19:44:29.151Z DEBUG [default][TestUtils:179] [WAIT] Pod to be reloaded and ready 2024-09-11T19:44:29.161Z DEBUG [default][KubeClient:322] [smoke-tests-d95] OriginalPodUid 81cf348e-49fe-4aca-b2cd-8bab8a425721 vs currentPodUid 81cf348e-49fe-4aca-b2cd-8bab8a425721 2024-09-11T19:44:34.172Z DEBUG [default][KubeClient:322] [smoke-tests-d95] OriginalPodUid 81cf348e-49fe-4aca-b2cd-8bab8a425721 vs currentPodUid faff1e5b-23de-4d58-9cdd-1417cb89562e 2024-09-11T19:44:46.561Z INFO [default][ResourceManager:359] [smoke-tests-d95] Created ActiveMQArtemisAddress artemis-address-queue 2024-09-11T19:44:46.571Z INFO [default][SmokeTests:149] [smoke-tests-d95] Starting AMQP publisher - receiver test 2024-09-11T19:44:46.573Z DEBUG [default][ExecutorOperator:79] [smoke-tests-d95] systemtests-clients-5f5bdf49f9-hfb5d Running command: cli-qpid-sender --broker 10.131.0.20:5672 --address myAddress0::myQueue0 --log-msgs json --count 10 2024-09-11T19:44:48.519Z DEBUG [default][BaseJMSClient:96] [systemtests-clients-5f5bdf49f9-hfb5d][TX] {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083887792,"group-sequence":0,"creation-time":1726083887792,"content-type":null,"id":"47c8223c-3f68-4076-abee-737f464ae09d:1:1:1-1","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083887839,"group-sequence":0,"creation-time":1726083887839,"content-type":null,"id":"47c8223c-3f68-4076-abee-737f464ae09d:1:1:1-2","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083887845,"group-sequence":0,"creation-time":1726083887845,"content-type":null,"id":"47c8223c-3f68-4076-abee-737f464ae09d:1:1:1-3","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083887848,"group-sequence":0,"creation-time":1726083887848,"content-type":null,"id":"47c8223c-3f68-4076-abee-737f464ae09d:1:1:1-4","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083887852,"group-sequence":0,"creation-time":1726083887852,"content-type":null,"id":"47c8223c-3f68-4076-abee-737f464ae09d:1:1:1-5","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083887855,"group-sequence":0,"creation-time":1726083887855,"content-type":null,"id":"47c8223c-3f68-4076-abee-737f464ae09d:1:1:1-6","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083887858,"group-sequence":0,"creation-time":1726083887858,"content-type":null,"id":"47c8223c-3f68-4076-abee-737f464ae09d:1:1:1-7","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083887862,"group-sequence":0,"creation-time":1726083887862,"content-type":null,"id":"47c8223c-3f68-4076-abee-737f464ae09d:1:1:1-8","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083887865,"group-sequence":0,"creation-time":1726083887865,"content-type":null,"id":"47c8223c-3f68-4076-abee-737f464ae09d:1:1:1-9","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083887868,"group-sequence":0,"creation-time":1726083887868,"content-type":null,"id":"47c8223c-3f68-4076-abee-737f464ae09d:1:1:1-10","reply-to":null,"properties":{"JMSXDeliveryCount":1}} 2024-09-11T19:44:48.523Z DEBUG [default][ExecutorOperator:79] [smoke-tests-d95] systemtests-clients-5f5bdf49f9-hfb5d Running command: cli-qpid-receiver --broker 10.131.0.20:5672 --address myAddress0::myQueue0 --log-msgs json --count 10 2024-09-11T19:44:50.396Z DEBUG [default][BaseJMSClient:119] [systemtests-clients-5f5bdf49f9-hfb5d][RX] {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083887792,"group-sequence":0,"creation-time":1726083887792,"content-type":null,"id":"47c8223c-3f68-4076-abee-737f464ae09d:1:1:1-1","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083887839,"group-sequence":0,"creation-time":1726083887839,"content-type":null,"id":"47c8223c-3f68-4076-abee-737f464ae09d:1:1:1-2","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083887845,"group-sequence":0,"creation-time":1726083887845,"content-type":null,"id":"47c8223c-3f68-4076-abee-737f464ae09d:1:1:1-3","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083887848,"group-sequence":0,"creation-time":1726083887848,"content-type":null,"id":"47c8223c-3f68-4076-abee-737f464ae09d:1:1:1-4","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083887852,"group-sequence":0,"creation-time":1726083887852,"content-type":null,"id":"47c8223c-3f68-4076-abee-737f464ae09d:1:1:1-5","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083887855,"group-sequence":0,"creation-time":1726083887855,"content-type":null,"id":"47c8223c-3f68-4076-abee-737f464ae09d:1:1:1-6","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083887858,"group-sequence":0,"creation-time":1726083887858,"content-type":null,"id":"47c8223c-3f68-4076-abee-737f464ae09d:1:1:1-7","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083887862,"group-sequence":0,"creation-time":1726083887862,"content-type":null,"id":"47c8223c-3f68-4076-abee-737f464ae09d:1:1:1-8","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083887865,"group-sequence":0,"creation-time":1726083887865,"content-type":null,"id":"47c8223c-3f68-4076-abee-737f464ae09d:1:1:1-9","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083887868,"group-sequence":0,"creation-time":1726083887868,"content-type":null,"id":"47c8223c-3f68-4076-abee-737f464ae09d:1:1:1-10","reply-to":null,"properties":{"JMSXDeliveryCount":1}} 2024-09-11T19:44:50.398Z DEBUG [default][MessagingClient:57] [systemtests-clients-5f5bdf49f9-hfb5d] All messages are same. Good. 2024-09-11T19:44:50.399Z INFO [default][SmokeTests:159] [smoke-tests-d95] Starting Bundled AMQP subscriber - publisher test 2024-09-11T19:44:50.399Z INFO [default][ExecutorOperator:94] [smoke-tests-d95] artemis-broker-ss-0 Running background command: [./amq-broker/bin/artemis consumer --url tcp://10.131.0.20:5672 --protocol amqp --destination fqqn://myAddress0::myQueue0 --message-count 10] 2024-09-11T19:44:50.479Z DEBUG [default][ExecutorOperator:79] [smoke-tests-d95] artemis-broker-ss-0 Running command: ./amq-broker/bin/artemis producer --url tcp://10.131.0.20:5672 --protocol amqp --destination fqqn://myAddress0::myQueue0 --message-count 10 2024-09-11T19:44:53.418Z DEBUG [default][BundledMessagingClient:137] [artemis-broker-ss-0] NOTE: Picked up JDK_JAVA_OPTIONS: -Dbroker.properties=/amq/extra/secrets/artemis-broker-props/broker.properties Connection brokerURL = tcp://10.131.0.20:5672 2024-09-11 19:44:52,580 WARN [org.apache.qpid.jms.provider.amqp.builders.AmqpResourceBuilder] Open of resource:(JmsConnectionInfo { ID:db0500f1-c0a0-498f-8484-63271b047aca:1, configuredURI = amqp://10.131.0.20:5672, connectedURI = null }) failed: Open failed unexpectedly. 2024-09-11 19:44:52,607 INFO [org.apache.qpid.jms.JmsConnection] Connection ID:d21e0bbd-04ef-44d9-8cf0-2b2a0d1bc9e6:2 connected to server: amqp://10.131.0.20:5672 Producer myAddress0::myQueue0, thread=0 Started to calculate elapsed time ... Producer myAddress0::myQueue0, thread=0 Produced: 10 messages Producer myAddress0::myQueue0, thread=0 Elapsed time in second : 0 s Producer myAddress0::myQueue0, thread=0 Elapsed time in milli second : 67 milli seconds 2024-09-11T19:44:53.419Z DEBUG [default][ExecutorOperator:121] NOTE: Picked up JDK_JAVA_OPTIONS: -Dbroker.properties=/amq/extra/secrets/artemis-broker-props/broker.properties Connection brokerURL = tcp://10.131.0.20:5672 Consumer:: filter = null 2024-09-11 19:44:52,476 WARN [org.apache.qpid.jms.provider.amqp.builders.AmqpResourceBuilder] Open of resource:(JmsConnectionInfo { ID:137ab305-dcbb-45f6-95b9-b9296ed42f71:1, configuredURI = amqp://10.131.0.20:5672, connectedURI = null }) failed: Open failed unexpectedly. 2024-09-11 19:44:52,510 INFO [org.apache.qpid.jms.JmsConnection] Connection ID:f8a5d806-0076-4cd5-acd1-996a03bc3343:2 connected to server: amqp://10.131.0.20:5672 Consumer myAddress0::myQueue0, thread=0 wait until 10 messages are consumed Consumer myAddress0::myQueue0, thread=0 Consumed: 10 messages Consumer myAddress0::myQueue0, thread=0 Elapsed time in second : 0 s Consumer myAddress0::myQueue0, thread=0 Elapsed time in milli second : 156 milli seconds Consumer myAddress0::myQueue0, thread=0 Consumed: 10 messages Consumer myAddress0::myQueue0, thread=0 Consumer thread finished 2024-09-11T19:44:53.419Z INFO [default][SmokeTests:162] [smoke-tests-d95] Starting SystemTest clients AMQP subscriber - publisher test 2024-09-11T19:44:53.428Z INFO [default][ExecutorOperator:94] [smoke-tests-d95] systemtests-clients-5f5bdf49f9-hfb5d Running background command: [cli-qpid-receiver --broker 10.131.0.20:5672 --address myAddress0::myQueue0 --log-msgs json --count 10 --timeout 60] 2024-09-11T19:44:53.499Z DEBUG [default][ExecutorOperator:79] [smoke-tests-d95] systemtests-clients-5f5bdf49f9-hfb5d Running command: cli-qpid-sender --broker 10.131.0.20:5672 --address myAddress0::myQueue0 --log-msgs json --count 10 2024-09-11T19:44:55.551Z DEBUG [default][BaseJMSClient:96] [systemtests-clients-5f5bdf49f9-hfb5d][TX] {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894720,"group-sequence":0,"creation-time":1726083894720,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-1","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894758,"group-sequence":0,"creation-time":1726083894758,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-2","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894765,"group-sequence":0,"creation-time":1726083894765,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-3","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894772,"group-sequence":0,"creation-time":1726083894772,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-4","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894775,"group-sequence":0,"creation-time":1726083894775,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-5","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894778,"group-sequence":0,"creation-time":1726083894778,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-6","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894782,"group-sequence":0,"creation-time":1726083894782,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-7","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894785,"group-sequence":0,"creation-time":1726083894785,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-8","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894788,"group-sequence":0,"creation-time":1726083894788,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-9","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894792,"group-sequence":0,"creation-time":1726083894792,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-10","reply-to":null,"properties":{"JMSXDeliveryCount":1}} 2024-09-11T19:44:55.553Z DEBUG [default][ExecutorOperator:121] {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894720,"group-sequence":0,"creation-time":1726083894720,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-1","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894758,"group-sequence":0,"creation-time":1726083894758,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-2","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894765,"group-sequence":0,"creation-time":1726083894765,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-3","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894772,"group-sequence":0,"creation-time":1726083894772,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-4","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894775,"group-sequence":0,"creation-time":1726083894775,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-5","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894778,"group-sequence":0,"creation-time":1726083894778,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-6","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894782,"group-sequence":0,"creation-time":1726083894782,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-7","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894785,"group-sequence":0,"creation-time":1726083894785,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-8","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894788,"group-sequence":0,"creation-time":1726083894788,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-9","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894792,"group-sequence":0,"creation-time":1726083894792,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-10","reply-to":null,"properties":{"JMSXDeliveryCount":1}} 2024-09-11T19:44:55.553Z DEBUG [default][BaseJMSClient:182] [systemtests-clients-5f5bdf49f9-hfb5d][RX] {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894720,"group-sequence":0,"creation-time":1726083894720,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-1","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894758,"group-sequence":0,"creation-time":1726083894758,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-2","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894765,"group-sequence":0,"creation-time":1726083894765,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-3","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894772,"group-sequence":0,"creation-time":1726083894772,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-4","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894775,"group-sequence":0,"creation-time":1726083894775,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-5","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894778,"group-sequence":0,"creation-time":1726083894778,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-6","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894782,"group-sequence":0,"creation-time":1726083894782,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-7","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894785,"group-sequence":0,"creation-time":1726083894785,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-8","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894788,"group-sequence":0,"creation-time":1726083894788,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-9","reply-to":null,"properties":{"JMSXDeliveryCount":1}} {"delivery-count":0,"address":"myAddress0::myQueue0","group-id":null,"subject":null,"user-id":null,"correlation-id":null,"content-encoding":null,"first-acquirer":false,"priority":4,"type":null,"ttl":0,"absolute-expiry-time":0,"content":null,"redelivered":false,"reply-to-group-id":null,"durable":true,"delivery-time":1726083894792,"group-sequence":0,"creation-time":1726083894792,"content-type":null,"id":"07602008-bf51-4d6c-bf4f-260afe0289f8:1:1:1-10","reply-to":null,"properties":{"JMSXDeliveryCount":1}} 2024-09-11T19:44:55.554Z DEBUG [default][MessagingClient:57] [systemtests-clients-5f5bdf49f9-hfb5d] All messages are same. Good. 2024-09-11T19:44:55.554Z INFO [default][SmokeTests:166] [smoke-tests-d95] Starting SystemTest clients MQTT subscriber - publisher test 2024-09-11T19:44:55.697Z WARN [default][MqttClient:276] [systemtests-clients-5f5bdf49f9-hfb5d] MQTT client does not support FQQN (!?) Using provided address instead myAddress0 2024-09-11T19:44:55.697Z INFO [default][ExecutorOperator:94] [smoke-tests-d95] systemtests-clients-5f5bdf49f9-hfb5d Running background command: [cli-hivemq-mqtt-subscribe -d --host 10.131.0.20 --port 5672 --topic myAddress0 --identifier clorareceiver] 2024-09-11T19:44:55.773Z DEBUG [default][MqttClient:159] [systemtests-clients-5f5bdf49f9-hfb5d][SUBSCRIBE] Sleeping for while to ensure subscriber is connected before moving forward 2024-09-11T19:45:00.774Z WARN [default][MqttClient:276] [systemtests-clients-5f5bdf49f9-hfb5d] MQTT client does not support FQQN (!?) Using provided address instead myAddress0 2024-09-11T19:45:00.775Z DEBUG [default][ExecutorOperator:79] [smoke-tests-d95] systemtests-clients-5f5bdf49f9-hfb5d Running command: cli-hivemq-mqtt-publish -d --host 10.131.0.20 --port 5672 --topic myAddress0 --identifier clora --message 11c78da8c0834da09493f809e2 --userProperty id=8223aa 2024-09-11T19:45:01.856Z DEBUG [default][MqttClient:123] [systemtests-clients-5f5bdf49f9-hfb5d][TX] Client 'clora@10.131.0.20' sending CONNECT MqttConnect{keepAlive=60, cleanStart=true, sessionExpiryInterval=0} Client 'clora@10.131.0.20' received CONNACK MqttConnAck{reasonCode=SUCCESS, sessionPresent=false, restrictions=MqttConnAckRestrictions{receiveMaximum=65535, maximumPacketSize=268435455, topicAliasMaximum=65535, maximumQos=EXACTLY_ONCE, retainAvailable=true, wildcardSubscriptionAvailable=true, sharedSubscriptionAvailable=true, subscriptionIdentifiersAvailable=true}} Client 'clora@10.131.0.20' sending PUBLISH ('11c78da8c0834da09493f809e2') MqttPublish{topic=myAddress0, payload=26byte, qos=AT_MOST_ONCE, retain=false, userProperties=[(id, 8223aa)]} Client 'clora@10.131.0.20' finish PUBLISH MqttPublishResult{publish=MqttPublish{topic=myAddress0, payload=26byte, qos=AT_MOST_ONCE, retain=false, userProperties=[(id, 8223aa)]}} 2024-09-11T19:45:01.859Z DEBUG [default][ExecutorOperator:79] [smoke-tests-d95] systemtests-clients-5f5bdf49f9-hfb5d Running command: sh -c for proc in /proc/[0-9]*/cmdline; do echo $(basename $(dirname $proc)) $(cat $proc | tr "\0" " "); done | grep clorareceiver | grep -v grep | cut -d ' ' -f 1 | xargs kill 2024-09-11T19:45:02.026Z DEBUG [default][MqttClient:170] [systemtests-clients-5f5bdf49f9-hfb5d][UNSUBSCRIBE] MQTT Client with clorareceiver 2024-09-11T19:45:02.027Z DEBUG [default][ExecutorOperator:118] Waiting for command to finish (checking every 5s) 2024-09-11T19:45:07.027Z DEBUG [default][ExecutorOperator:121] Client 'clorareceiver@10.131.0.20' sending CONNECT MqttConnect{keepAlive=60, cleanStart=true, sessionExpiryInterval=0} Client 'clorareceiver@10.131.0.20' received CONNACK MqttConnAck{reasonCode=SUCCESS, sessionPresent=false, restrictions=MqttConnAckRestrictions{receiveMaximum=65535, maximumPacketSize=268435455, topicAliasMaximum=65535, maximumQos=EXACTLY_ONCE, retainAvailable=true, wildcardSubscriptionAvailable=true, sharedSubscriptionAvailable=true, subscriptionIdentifiersAvailable=true}} Client 'clorareceiver@10.131.0.20' sending SUBSCRIBE MqttSubscribe{subscriptions=[MqttSubscription{topicFilter=myAddress0, qos=EXACTLY_ONCE, noLocal=false, retainHandling=SEND, retainAsPublished=false}]} Client 'clorareceiver@10.131.0.20' received SUBACK MqttSubAck{reasonCodes=[GRANTED_QOS_2], packetIdentifier=65526} Client 'clorareceiver@10.131.0.20' received PUBLISH ('11c78da8c0834da09493f809e2') MqttPublish{topic=myAddress0, payload=26byte, qos=AT_MOST_ONCE, retain=false, userProperties=[(id, 8223aa)]} 11c78da8c0834da09493f809e2 2024-09-11T19:45:07.028Z DEBUG [default][MqttClient:218] [systemtests-clients-5f5bdf49f9-hfb5d] All messages are same. Good. 2024-09-11T19:45:07.029Z DEBUG [default][ResourceManager:686] [smoke-tests-d95] Removed clients deployment systemtests-clients 2024-09-11T19:45:07.049Z INFO [default][ResourceManager:405] [smoke-tests-d95] Deleted ActiveMQArtemisAddress artemis-address-queue 2024-09-11T19:45:07.059Z INFO [default][ResourceManager:595] [smoke-tests-d95] Waiting 60s for deletion of broker artemis-broker 2024-09-11T19:45:07.059Z DEBUG [default][TestUtils:179] [WAIT] ActiveMQArtemis statefulSet & related pods to be removed 2024-09-11T19:45:12.087Z DEBUG [default][ResourceManager:612] [smoke-tests-d95] Removed updated ActiveMQArtemis object artemis-broker 2024-09-11T19:45:12.087Z INFO [default][ResourceManager:330] [smoke-tests-d95] Deleted ActiveMQArtemis artemis-broker 2024-09-11T19:45:12.088Z INFO [default][TestSeparator:43] Finished: io.brokerqe.claire.smoke.SmokeTests.sendReceiveSystemTestsClientMessageTest 2024-09-11T19:45:12.088Z INFO [default][TestSeparator:44] ---------------------------------------------------------------------------- 2024-09-11T19:45:12.090Z INFO [default][TestSeparator:34] ---------------------------------------------------------------------------- 2024-09-11T19:45:12.090Z INFO [default][TestSeparator:35] [5/6] Started: io.brokerqe.claire.smoke.SmokeTests.testDefaultBrokerVersion 2024-09-11T19:45:12.120Z DEBUG [default][TestUtils:370] Parsed version: 7.12.2 from 7.12.2-opr-1. 2024-09-11T19:45:12.141Z INFO [default][ResourceManager:294] Created ActiveMQArtemis ActiveMQArtemis() in namespace smoke-tests-d95 2024-09-11T19:45:12.142Z INFO [default][ResourceManager:543] [smoke-tests-d95] Waiting 90s for creation of broker smoke 2024-09-11T19:45:12.142Z DEBUG [default][TestUtils:179] [WAIT] StatefulSet to be ready 2024-09-11T19:46:42.154Z INFO [default][OperatorTestDataCollector:61] Error detected! Will gather data from namespace: smoke-tests-d95 2024-09-11T19:46:42.155Z DEBUG [default][OperatorTestDataCollector:67] [smoke-tests-d95] Gathering debug data for failed io.brokerqe.claire.smoke.SmokeTests#testDefaultBrokerVersion into /app/operator-suite/test-logs/2024-09-11_19-40-54/smoke.SmokeTests.testDefaultBrokerVersion//smoke-tests-d95 2024-09-11T19:46:42.255Z WARN [default][VersionUsageUtils:60] The client is using resource type 'activemqartemissecurities' with unstable version 'v1beta1' 2024-09-11T19:46:57.562Z INFO [default][TestSeparator:43] Finished: io.brokerqe.claire.smoke.SmokeTests.testDefaultBrokerVersion 2024-09-11T19:46:57.562Z INFO [default][TestSeparator:44] ---------------------------------------------------------------------------- 2024-09-11T19:46:57.562Z ERROR [][ExecWebSocketListener:286] Exec Failure io.fabric8.kubernetes.client.http.WebSocketHandshakeException: null at io.fabric8.kubernetes.client.http.StandardHttpClient.lambda$buildWebSocket$17(StandardHttpClient.java:240) at java.base/java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:863) at java.base/java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:841) at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) at java.base/java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:2147) at io.fabric8.kubernetes.client.utils.AsyncUtils.lambda$retryWithExponentialBackoff$3(AsyncUtils.java:90) at java.base/java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:863) at java.base/java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:841) at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) at java.base/java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:2147) at io.fabric8.kubernetes.client.okhttp.OkHttpWebSocketImpl$1.onFailure(OkHttpWebSocketImpl.java:88) at okhttp3.internal.ws.RealWebSocket.failWebSocket(RealWebSocket.kt:592) at okhttp3.internal.ws.RealWebSocket$connect$1.onResponse(RealWebSocket.kt:174) at okhttp3.internal.connection.RealCall$AsyncCall.run(RealCall.kt:519) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.lang.Thread.run(Thread.java:840) Suppressed: java.lang.Throwable: waiting here at io.fabric8.kubernetes.client.utils.Utils.waitUntilReady(Utils.java:174) at io.fabric8.kubernetes.client.utils.Utils.waitUntilReadyOrFail(Utils.java:185) at io.fabric8.kubernetes.client.dsl.internal.core.v1.PodOperationsImpl.setupConnectionToPod(PodOperationsImpl.java:382) at io.fabric8.kubernetes.client.dsl.internal.core.v1.PodOperationsImpl.exec(PodOperationsImpl.java:288) at io.fabric8.kubernetes.client.dsl.internal.core.v1.PodOperationsImpl.copyFile(PodOperationsImpl.java:475) at io.fabric8.kubernetes.client.dsl.internal.core.v1.PodOperationsImpl.copy(PodOperationsImpl.java:400) at io.brokerqe.claire.OperatorTestDataCollector.collectBrokerPodFiles(OperatorTestDataCollector.java:115) at io.brokerqe.claire.OperatorTestDataCollector.collectTestData(OperatorTestDataCollector.java:97) at io.brokerqe.claire.TestDataCollector.handleTestExecutionException(TestDataCollector.java:53) at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestExecutionExceptionHandlers$8(TestMethodTestDescriptor.java:232) at org.junit.jupiter.engine.descriptor.JupiterTestDescriptor.invokeExecutionExceptionHandlers(JupiterTestDescriptor.java:125) at org.junit.jupiter.engine.descriptor.JupiterTestDescriptor.invokeExecutionExceptionHandlers(JupiterTestDescriptor.java:112) at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestExecutionExceptionHandlers(TestMethodTestDescriptor.java:231) at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(TestMethodTestDescriptor.java:223) at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(TestMethodTestDescriptor.java:214) at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:139) at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:69) at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:151) at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141) at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139) at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138) at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95) at java.base/java.util.ArrayList.forEach(ArrayList.java:1511) at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155) at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141) at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139) at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138) at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95) at java.base/java.util.ArrayList.forEach(ArrayList.java:1511) at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41) at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155) at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141) at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137) at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139) at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73) at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138) at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95) at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:35) at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57) at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54) at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:198) at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:169) at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:93) at org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(EngineExecutionOrchestrator.java:58) at org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(EngineExecutionOrchestrator.java:141) at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:57) at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:103) at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:85) at org.junit.platform.launcher.core.DelegatingLauncher.execute(DelegatingLauncher.java:47) at org.apache.maven.surefire.junitplatform.LazyLauncher.execute(LazyLauncher.java:56) at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.execute(JUnitPlatformProvider.java:184) at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invokeAllTests(JUnitPlatformProvider.java:148) at org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invoke(JUnitPlatformProvider.java:122) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:385) at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:162) at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:507) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:495) Caused by: java.net.ProtocolException: Expected HTTP 101 response but was '400 Bad Request' at okhttp3.internal.ws.RealWebSocket.checkUpgradeSuccess$okhttp(RealWebSocket.kt:224) at okhttp3.internal.ws.RealWebSocket$connect$1.onResponse(RealWebSocket.kt:170) ... 4 common frames omitted 2024-09-11T19:46:57.569Z INFO [default][TestSeparator:34] ---------------------------------------------------------------------------- 2024-09-11T19:46:57.569Z INFO [default][TestSeparator:35] [6/6] Started: io.brokerqe.claire.smoke.SmokeTests.testConsoleProvidedVersion 2024-09-11T19:46:58.055Z INFO [default][ResourceManager:294] Created ActiveMQArtemis ActiveMQArtemis() in namespace smoke-tests-d95 2024-09-11T19:46:58.056Z INFO [default][ResourceManager:543] [smoke-tests-d95] Waiting 60s for creation of broker smoke 2024-09-11T19:46:58.056Z DEBUG [default][TestUtils:179] [WAIT] StatefulSet to be ready 2024-09-11T19:47:33.109Z DEBUG [default][ResourceManager:581] [smoke-tests-d95] Waiting for expected broker pods count: 1 2024-09-11T19:47:33.109Z DEBUG [default][TestUtils:179] [WAIT] all broker pods to start 2024-09-11T19:47:33.132Z DEBUG [default][KubeClient:658] [smoke-tests-d95] Searching for route with smoke-wconsj-0-svc-rte 2024-09-11T19:47:33.140Z DEBUG [default][TestUtils:179] [WAIT] wait for console be ready 2024-09-11T19:47:53.175Z INFO [default][OperatorTestDataCollector:61] Error detected! Will gather data from namespace: smoke-tests-d95 2024-09-11T19:47:53.175Z DEBUG [default][OperatorTestDataCollector:67] [smoke-tests-d95] Gathering debug data for failed io.brokerqe.claire.smoke.SmokeTests#testConsoleProvidedVersion into /app/operator-suite/test-logs/2024-09-11_19-40-54/smoke.SmokeTests.testConsoleProvidedVersion//smoke-tests-d95 2024-09-11T19:47:54.800Z DEBUG [default][ExecutorOperator:79] [smoke-tests-d95] smoke-ss-0 Running command: /bin/bash -c find /amq/extra/ -type f 2024-09-11T19:47:55.085Z INFO [default][TestSeparator:43] Finished: io.brokerqe.claire.smoke.SmokeTests.testConsoleProvidedVersion 2024-09-11T19:47:55.085Z INFO [default][TestSeparator:44] ---------------------------------------------------------------------------- 2024-09-11T19:47:55.088Z DEBUG [default][ArtemisCloudClusterOperatorOlm:193] [smoke-tests-d95] Going to undeploy [amq-broker-rhel8-4e, amq-broker-rhel8-4e] 2024-09-11T19:47:55.109Z INFO [default][ArtemisCloudClusterOperatorOlm:195] [smoke-tests-d95] [OLM] Successfully undeployed ArtemisCloudOperator 2024-09-11T19:47:55.109Z INFO [default][KubeClient:160] Deleting namespace smoke-tests-d95 2024-09-11T19:47:55.178Z DEBUG [default][TestUtils:179] [WAIT] Deletion of namespace 2024-09-11T19:48:09.293Z INFO [default][TestSeparator:50] Finished Class: io.brokerqe.claire.smoke.SmokeTests 2024-09-11T19:48:09.294Z INFO [default][TestSeparator:51] ---------------------------------------------------------------------------- [ERROR] Tests run: 5, Failures: 0, Errors: 2, Skipped: 0, Time elapsed: 286.8 s <<< FAILURE! -- in io.brokerqe.claire.smoke.SmokeTests [ERROR] io.brokerqe.claire.smoke.SmokeTests.testDefaultBrokerVersion -- Time elapsed: 105.5 s <<< ERROR! io.fabric8.kubernetes.client.KubernetesClientException: An error has occurred. at io.fabric8.kubernetes.client.KubernetesClientException.launderThrowable(KubernetesClientException.java:129) at io.fabric8.kubernetes.client.KubernetesClientException.launderThrowable(KubernetesClientException.java:122) at io.fabric8.kubernetes.client.utils.Utils.waitUntilReady(Utils.java:175) at io.fabric8.kubernetes.client.utils.Utils.waitUntilReadyOrFail(Utils.java:185) at io.fabric8.kubernetes.client.dsl.internal.core.v1.PodOperationsImpl.setupConnectionToPod(PodOperationsImpl.java:382) at io.fabric8.kubernetes.client.dsl.internal.core.v1.PodOperationsImpl.exec(PodOperationsImpl.java:288) at io.fabric8.kubernetes.client.dsl.internal.core.v1.PodOperationsImpl.copyFile(PodOperationsImpl.java:475) at io.fabric8.kubernetes.client.dsl.internal.core.v1.PodOperationsImpl.copy(PodOperationsImpl.java:400) at io.brokerqe.claire.OperatorTestDataCollector.collectBrokerPodFiles(OperatorTestDataCollector.java:115) at io.brokerqe.claire.OperatorTestDataCollector.collectTestData(OperatorTestDataCollector.java:97) at io.brokerqe.claire.TestDataCollector.handleTestExecutionException(TestDataCollector.java:53) at java.base/java.util.ArrayList.forEach(ArrayList.java:1511) at java.base/java.util.ArrayList.forEach(ArrayList.java:1511) Caused by: io.fabric8.kubernetes.client.http.WebSocketHandshakeException at io.fabric8.kubernetes.client.http.StandardHttpClient.lambda$buildWebSocket$17(StandardHttpClient.java:240) at java.base/java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:863) at java.base/java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:841) at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) at java.base/java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:2147) at io.fabric8.kubernetes.client.utils.AsyncUtils.lambda$retryWithExponentialBackoff$3(AsyncUtils.java:90) at java.base/java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:863) at java.base/java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:841) at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) at java.base/java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:2147) at io.fabric8.kubernetes.client.okhttp.OkHttpWebSocketImpl$1.onFailure(OkHttpWebSocketImpl.java:88) at okhttp3.internal.ws.RealWebSocket.failWebSocket(RealWebSocket.kt:592) at okhttp3.internal.ws.RealWebSocket$connect$1.onResponse(RealWebSocket.kt:174) at okhttp3.internal.connection.RealCall$AsyncCall.run(RealCall.kt:519) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.lang.Thread.run(Thread.java:840) Suppressed: java.lang.Throwable: waiting here at io.fabric8.kubernetes.client.utils.Utils.waitUntilReady(Utils.java:174) at io.fabric8.kubernetes.client.utils.Utils.waitUntilReadyOrFail(Utils.java:185) at io.fabric8.kubernetes.client.dsl.internal.core.v1.PodOperationsImpl.setupConnectionToPod(PodOperationsImpl.java:382) at io.fabric8.kubernetes.client.dsl.internal.core.v1.PodOperationsImpl.exec(PodOperationsImpl.java:288) at io.fabric8.kubernetes.client.dsl.internal.core.v1.PodOperationsImpl.copyFile(PodOperationsImpl.java:475) at io.fabric8.kubernetes.client.dsl.internal.core.v1.PodOperationsImpl.copy(PodOperationsImpl.java:400) at io.brokerqe.claire.OperatorTestDataCollector.collectBrokerPodFiles(OperatorTestDataCollector.java:115) at io.brokerqe.claire.OperatorTestDataCollector.collectTestData(OperatorTestDataCollector.java:97) at io.brokerqe.claire.TestDataCollector.handleTestExecutionException(TestDataCollector.java:53) at java.base/java.util.ArrayList.forEach(ArrayList.java:1511) at java.base/java.util.ArrayList.forEach(ArrayList.java:1511) Suppressed: java.lang.IllegalStateException: Can't overwrite cause with io.fabric8.kubernetes.client.http.WebSocketHandshakeException at java.base/java.lang.Throwable.initCause(Throwable.java:463) at io.fabric8.kubernetes.client.dsl.internal.ExecWebSocketListener.onError(ExecWebSocketListener.java:270) at io.fabric8.kubernetes.client.dsl.internal.core.v1.PodOperationsImpl.lambda$setupConnectionToPod$2(PodOperationsImpl.java:379) at java.base/java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:863) at java.base/java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:841) at java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:510) at java.base/java.util.concurrent.CompletableFuture.completeExceptionally(CompletableFuture.java:2162) at io.fabric8.kubernetes.client.http.StandardHttpClient.lambda$completeOrCancel$10(StandardHttpClient.java:138) at io.fabric8.kubernetes.client.http.StandardHttpClient.lambda$buildWebSocket$17(StandardHttpClient.java:241) ... 16 more Caused by: io.fabric8.kubernetes.client.KubernetesClientException ... 24 more Caused by: java.net.ProtocolException: Expected HTTP 101 response but was '400 Bad Request' at okhttp3.internal.ws.RealWebSocket.checkUpgradeSuccess$okhttp(RealWebSocket.kt:224) at okhttp3.internal.ws.RealWebSocket$connect$1.onResponse(RealWebSocket.kt:170) ... 4 more [ERROR] io.brokerqe.claire.smoke.SmokeTests.testConsoleProvidedVersion -- Time elapsed: 57.52 s <<< ERROR! io.brokerqe.claire.exception.WaitException: Timeout after 5000 ms waiting for wait for console be ready at io.brokerqe.claire.TestUtils.waitFor(TestUtils.java:224) at io.brokerqe.claire.TestUtils.waitFor(TestUtils.java:175) at io.brokerqe.claire.AbstractSystemTests.waitConsoleReady(AbstractSystemTests.java:366) at io.brokerqe.claire.smoke.SmokeTests.testConsoleProvidedVersion(SmokeTests.java:370) at java.base/java.lang.reflect.Method.invoke(Method.java:569) at java.base/java.util.ArrayList.forEach(ArrayList.java:1511) at java.base/java.util.ArrayList.forEach(ArrayList.java:1511) 2024-09-11T19:48:09.297Z DEBUG [default][OperatorExecutionListener:39] Teardown environment started 2024-09-11T19:48:09.297Z WARN [default][ResourceManager:948] [smoke-tests-d95] Undeploying orphaned Artemis smoke! 2024-09-11T19:48:09.304Z DEBUG [default][OperatorExecutionListener:44] Teardown environment finished 2024-09-11T19:48:09.305Z DEBUG [default][OperatorExecutionListener:47] Resetting setupPerformed to 'false' [INFO] [INFO] Results: [INFO] [ERROR] Errors: [ERROR] SmokeTests.testConsoleProvidedVersion:370->AbstractSystemTests.waitConsoleReady:366 » Wait Timeout after 5000 ms waiting for wait for console be ready [ERROR] SmokeTests.testDefaultBrokerVersion » KubernetesClient An error has occurred. [INFO] [ERROR] Tests run: 6, Failures: 0, Errors: 2, Skipped: 0 [INFO] [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 07:16 min [INFO] Finished at: 2024-09-11T19:48:09Z [INFO] ------------------------------------------------------------------------ cp -axv /app/operator-suite/target/failsafe-reports/* /app/test-results/operator-suite/ '/app/operator-suite/target/failsafe-reports/failsafe-summary.xml' -> '/app/test-results/operator-suite/failsafe-summary.xml' '/app/operator-suite/target/failsafe-reports/io.brokerqe.claire.smoke.ClusteredOperatorSmokeTests.txt' -> '/app/test-results/operator-suite/io.brokerqe.claire.smoke.ClusteredOperatorSmokeTests.txt' '/app/operator-suite/target/failsafe-reports/io.brokerqe.claire.smoke.SmokeTests.txt' -> '/app/test-results/operator-suite/io.brokerqe.claire.smoke.SmokeTests.txt' '/app/operator-suite/target/failsafe-reports/TEST-io.brokerqe.claire.smoke.ClusteredOperatorSmokeTests.xml' -> '/app/test-results/operator-suite/TEST-io.brokerqe.claire.smoke.ClusteredOperatorSmokeTests.xml' '/app/operator-suite/target/failsafe-reports/TEST-io.brokerqe.claire.smoke.SmokeTests.xml' -> '/app/test-results/operator-suite/TEST-io.brokerqe.claire.smoke.SmokeTests.xml' [2024-09-11 19:48:09 +0000] - Finished Claire execution Wed Sep 11 07:48:09 PM UTC 2024 [2024-09-11 19:48:09 +0000] - sleeping forever [2024-09-11 19:48:09 +0000] - Finished Claire execution Wed Sep 11 07:48:09 PM UTC 2024 [2024-09-11 19:48:39 +0000] - Deleting Namespace claire apiVersion: v1 kind: Namespace metadata: name: claire Renaming xmls to junit_*.xml Copy logs and xmls to ARTIFACT_DIR namespace "claire" deleted