Skip to content
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
1 change: 1 addition & 0 deletions .semaphore/semaphore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ global_job_config:
- export URL_CONFLUENT_VERSION=$(echo $CONFLUENT_VERSION | awk -F . '{print $1"."$2}')
- export PACKAGES_URL="https://s3-us-west-2.amazonaws.com/dev-confluent-packages-654654529379-us-west-2/$BRANCH_TAG/$LATEST_PACKAGING_BUILD_NUMBER/PACKAGE_TYPE/$URL_CONFLUENT_VERSION"
- export PACKAGING_BUILD_NUMBER=$LATEST_PACKAGING_BUILD_NUMBER
- export PACKAGES_URL="https://s3-us-west-2.amazonaws.com/dev-confluent-packages-654654529379-us-west-2/failed/master/7643/rpm/8.0"
- >-
if [[ $IS_BETA || $IS_HOTFIX || $IS_POST ]]; then
export PLATFORM_LABEL=$(echo $BRANCH_TAG | awk -F - '{print "~"$2}')
Expand Down
8 changes: 4 additions & 4 deletions kafka-rest/Dockerfile.ubi8
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
# limitations under the License.

ARG DOCKER_UPSTREAM_REGISTRY
ARG DOCKER_UPSTREAM_TAG=ubi8-latest
ARG DOCKER_UPSTREAM_TAG=ubi9-latest

FROM ${DOCKER_UPSTREAM_REGISTRY}confluentinc/cp-base-new:${DOCKER_UPSTREAM_TAG}
FROM ${DOCKER_UPSTREAM_REGISTRY}confluentinc/cp-base-java:${DOCKER_UPSTREAM_TAG}

ARG PROJECT_VERSION
ARG ARTIFACT_ID
Expand Down Expand Up @@ -57,7 +57,7 @@ baseurl=${CONFLUENT_PACKAGES_REPO}/ \n\
gpgcheck=1 \n\
gpgkey=${CONFLUENT_PACKAGES_REPO}/archive.key \n\
enabled=1 " > /etc/yum.repos.d/confluent.repo \
&& yum install -y \
&& microdnf install -y \
confluent-${COMPONENT}-${CONFLUENT_VERSION} \
confluent-control-center-${CONFLUENT_VERSION} \
# We are installing confluent-telemetry package explicitly because
Expand All @@ -66,7 +66,7 @@ enabled=1 " > /etc/yum.repos.d/confluent.repo \
confluent-telemetry-${CONFLUENT_VERSION} \
confluent-security-${CONFLUENT_VERSION} \
&& echo "===> clean up ..." \
&& yum clean all \
&& microdnf clean all \
&& rm -rf /tmp/* /etc/yum.repos.d/confluent.repo \
&& echo "===> Setting up ${COMPONENT} dirs" \
&& chown appuser:root -R /etc/${COMPONENT} \
Expand Down