Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Do Not Merge] adding secret-registry package to connect #330

Open
wants to merge 2 commits into
base: 7.7.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .semaphore/semaphore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/)
Expand Down
2 changes: 2 additions & 0 deletions server-connect-base/Dockerfile.ubi8
Original file line number Diff line number Diff line change
Expand Up @@ -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 ..." \
Expand Down