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
6 changes: 4 additions & 2 deletions jenkins/jobbuilder.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,12 @@ pipeline {
steps {
withCredentials([usernamePassword(credentialsId: 'JENKINS_BOT_CREDENTIALS', passwordVariable: 'JENKINS_BOT_PASSWORD', usernameVariable: 'JENKINS_BOT_USERNAME')]) {
sh '''
JENKINS_USERNAME="$JENKINS_BOT_USERNAME" \
JENKINS_PASSWORD="$JENKINS_BOT_PASSWORD" \
docker run --rm \
--env JENKINS_URL=https://testing.stackable.tech \
--env JENKINS_USERNAME=$JENKINS_BOT_USERNAME \
--env JENKINS_PASSWORD=$JENKINS_BOT_PASSWORD \
--env JENKINS_USERNAME \
--env JENKINS_PASSWORD \
oci.stackable.tech/jenkins-job-builder:latest
'''
}
Expand Down
2 changes: 1 addition & 1 deletion tools/harbor-garbage-collector/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM oci.stackable.tech/sdp/ubi8-rust-builder AS builder

FROM registry.access.redhat.com/ubi8/ubi-minimal AS operator
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.10@sha256:578b238953144445a9b5bb2487eb1d95df4886f98d1f73c4a070b27535f51688 AS operator

ARG VERSION
ARG RELEASE="1"
Expand Down
2 changes: 2 additions & 0 deletions tools/harbor-sbom-browser/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ ARG RELEASE="1"
RUN microdnf install -y yum \
&& yum -y update-minimal --security --sec-severity=Important --sec-severity=Critical \
&& curl -L -O https://github.com/sigstore/cosign/releases/download/v3.0.2/cosign-3.0.2-1.x86_64.rpm \
&& echo "7b6ae0f1e8da49d196f89245d4014887747c01c215e2e7f41e4853c98a28ed9b cosign-3.0.2-1.x86_64.rpm" > cosign-3.0.2-1.x86_64.rpm.sha256 \
&& sha256sum -c cosign-3.0.2-1.x86_64.rpm.sha256 \
&& rpm -ivh cosign-3.0.2-1.x86_64.rpm \
&& yum clean all \
&& microdnf clean all
Expand Down
4 changes: 3 additions & 1 deletion tools/monitor-oci-artifacts/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM oci.stackable.tech/sdp/ubi9-rust-builder AS builder

FROM registry.access.redhat.com/ubi9/ubi-minimal AS operator
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.6@sha256:7c5495d5fad59aaee12abc3cbbd2b283818ee1e814b00dbc7f25bf2d14fa4f0c AS operator

ARG VERSION
ARG RELEASE="1"
Expand All @@ -9,6 +9,8 @@ ARG RELEASE="1"
RUN microdnf install -y yum \
&& yum -y update-minimal --security --sec-severity=Important --sec-severity=Critical \
&& curl -L -O https://github.com/sigstore/cosign/releases/download/v3.0.2/cosign-3.0.2-1.x86_64.rpm \
&& echo "7b6ae0f1e8da49d196f89245d4014887747c01c215e2e7f41e4853c98a28ed9b cosign-3.0.2-1.x86_64.rpm" > cosign-3.0.2-1.x86_64.rpm.sha256 \
&& sha256sum -c cosign-3.0.2-1.x86_64.rpm.sha256 \
&& rpm -ivh cosign-3.0.2-1.x86_64.rpm \
&& yum clean all \
&& microdnf clean all
Expand Down
2 changes: 1 addition & 1 deletion tools/nexus-garbage-collector/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM oci.stackable.tech/sdp/ubi8-rust-builder AS builder

FROM registry.access.redhat.com/ubi8/ubi-minimal AS operator
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.10@sha256:578b238953144445a9b5bb2487eb1d95df4886f98d1f73c4a070b27535f51688 AS operator

ARG VERSION
ARG RELEASE="1"
Expand Down