From 5749ef8ebd85e20335a0819a529c1afd52408ec7 Mon Sep 17 00:00:00 2001 From: rlieberman-splunk Date: Fri, 13 Dec 2024 15:39:18 -0600 Subject: [PATCH] re-enable test case, correct merge conflict --- .../c3/manager_appframework_test.go | 2 +- test/run-tests.sh | 16 ---------------- 2 files changed, 1 insertion(+), 17 deletions(-) diff --git a/test/appframework_aws/c3/manager_appframework_test.go b/test/appframework_aws/c3/manager_appframework_test.go index a8c93b0c7..7d9272c23 100644 --- a/test/appframework_aws/c3/manager_appframework_test.go +++ b/test/appframework_aws/c3/manager_appframework_test.go @@ -304,7 +304,7 @@ var _ = Describe("c3appfw test", func() { }) }) - XContext("Single Site Indexer Cluster with Search Head Cluster (C3) and App Framework and Image Upgrade", func() { + Context("Single Site Indexer Cluster with Search Head Cluster (C3) and App Framework and Image Upgrade", func() { It("smoke, c3, managerappframeworkc3t, appframework: can deploy a C3 SVA with App Framework enabled, install apps then upgrade the image and apps", func() { //################## SETUP #################### diff --git a/test/run-tests.sh b/test/run-tests.sh index 1fc03aedf..13a96dc4a 100755 --- a/test/run-tests.sh +++ b/test/run-tests.sh @@ -35,21 +35,6 @@ if [ -n "${PRIVATE_REGISTRY}" ]; then fi # Always attempt to pull splunk enterprise image -<<<<<<< HEAD - echo "Pulling SPLUNK_ENTERPRISE_IMAGE=${SPLUNK_ENTERPRISE_IMAGE}..." - docker pull ${SPLUNK_ENTERPRISE_IMAGE} - if [ $? -ne 0 ]; then - echo "Unable to pull ${SPLUNK_ENTERPRISE_IMAGE}. Exiting..." - exit 1 - fi - - if [ "$ARM64" == "true" ]; then - echo "ARM64, enterprise tag and push unnecessary" - else - echo "Tagging to privat repo ${PRIVATE_SPLUNK_OPERATOR_IMAGE}..." - docker tag ${SPLUNK_ENTERPRISE_IMAGE} ${PRIVATE_SPLUNK_ENTERPRISE_IMAGE} - echo "Pushing to private repo ${PRIVATE_SPLUNK_ENTERPRISE_IMAGE}" -======= echo "check if image exists, docker manifest inspect $PRIVATE_SPLUNK_ENTERPRISE_IMAGE" if docker manifest inspect "$PRIVATE_SPLUNK_ENTERPRISE_IMAGE" > /dev/null 2>&1; then echo "Image $PRIVATE_SPLUNK_ENTERPRISE_IMAGE exists on the remote repository." @@ -66,7 +51,6 @@ if [ -n "${PRIVATE_REGISTRY}" ]; then exit 1 fi docker tag ${SPLUNK_ENTERPRISE_IMAGE} ${PRIVATE_SPLUNK_ENTERPRISE_IMAGE} ->>>>>>> 7f9b7158 (Update 2.7.0 branch for gitlab testig needs.) docker push ${PRIVATE_SPLUNK_ENTERPRISE_IMAGE} if [ $? -ne 0 ]; then echo "Unable to push ${PRIVATE_SPLUNK_ENTERPRISE_IMAGE}. Exiting..."