From 902b496cfa345993cc74c45e23dff4c339233f2c Mon Sep 17 00:00:00 2001 From: Ujjwal Date: Wed, 5 Jun 2024 15:08:47 +0530 Subject: [PATCH 1/2] [secret-registry] | adding secret-registry package to connect --- server-connect-base/Dockerfile.ubi8 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server-connect-base/Dockerfile.ubi8 b/server-connect-base/Dockerfile.ubi8 index 2531c0dceb..cf9ffd6be6 100644 --- a/server-connect-base/Dockerfile.ubi8 +++ b/server-connect-base/Dockerfile.ubi8 @@ -66,6 +66,8 @@ enabled=1 " > /etc/yum.repos.d/confluent.repo \ && yum install -y confluent-schema-registry-${CONFLUENT_VERSION} \ && echo "===> Installing Controlcenter for monitoring interceptors ..."\ && yum install -y confluent-control-center-${CONFLUENT_VERSION} \ + && echo "===> Installing confluent-secret-registry (for connect secret registry plugin) ..."\ + && yum install -y confluent-secret-registry-${CONFLUENT_VERSION} \ && echo "===> Installing Confluent Hub client ..." \ && yum install -y confluent-hub-client-${CONFLUENT_VERSION} \ && echo "===> Cleaning up ..." \ From c02038c58a8842b6c8bb0628fddcd3ca50165cfe Mon Sep 17 00:00:00 2001 From: Ujjwal Date: Thu, 6 Jun 2024 13:09:38 +0530 Subject: [PATCH 2/2] [secret-registry] | changes for running on semaphore --- .semaphore/semaphore.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.semaphore/semaphore.yml b/.semaphore/semaphore.yml index efa9b13e22..e3bcec5c92 100644 --- a/.semaphore/semaphore.yml +++ b/.semaphore/semaphore.yml @@ -34,7 +34,7 @@ global_job_config: # For PR Builds using Packaging - pip install confluent-release-tools - if [ $BRANCH_TAG == "master" ]; then export BUILD_KEY=$(pinto get-master-version); else export BUILD_KEY=$BRANCH_TAG; fi - - export PACKAGING_BUCKET="s3://jenkins-confluent-packages/$BRANCH_TAG/" + - export PACKAGING_BUCKET="s3://dev-confluent-packages-654654529379-us-west-2/$BRANCH_TAG/" - export LATEST_PACKAGING_BUILD_NUMBER=$(aws s3 ls $PACKAGING_BUCKET --no-paginate | grep 'PRE' | awk '{print $NF}' | awk '{print substr($1, 1, length($1)-1)}' | sort -n | tail -n 1) # Check if version is complete, otherwise use the previous version - (aws s3 ls $PACKAGING_BUCKET$LATEST_PACKAGING_BUILD_NUMBER/deb/ && aws s3 ls $PACKAGING_BUCKET$LATEST_PACKAGING_BUILD_NUMBER/rpm/ && aws s3 ls $PACKAGING_BUCKET$LATEST_PACKAGING_BUILD_NUMBER/archive/)