Skip to content
Merged
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 .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
':maintainLockFilesWeekly',
':pinDigestsDisabled',
],
pinDigests: true,
pinDigests: false,
commitMessageTopic: '{{depName}}',
commitMessageExtra: 'to {{newVersion}}',
commitMessageSuffix: '',
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ RUN go mod download
COPY . .
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o /lease-controller ./cmd/main.go

FROM gcr.io/distroless/static:nonroot@sha256:cba10d7abd3e203428e86f5b2d7fd5eb7d8987c387864ae4996cf97191b33764
FROM gcr.io/distroless/static:nonroot
COPY --from=builder /lease-controller /lease-controller
ENTRYPOINT ["/lease-controller"]
4 changes: 2 additions & 2 deletions object-lease-console-plugin/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build stage
FROM node:24-alpine@sha256:4f696fbf39f383c1e486030ba6b289a5d9af541642fc78ab197e584a113b9c03 AS builder
FROM node:24-alpine AS builder
WORKDIR /opt/app
COPY package.json tsconfig.json webpack.config.js ./
COPY src ./src
Expand All @@ -8,7 +8,7 @@ RUN yarn install --frozen-lockfile || yarn install \
&& yarn build

# Runtime stage: serve plugin assets over HTTPS with service certs
FROM registry.access.redhat.com/ubi9/nginx-120:latest@sha256:7559eaa667fca92b41dd4d9481a1ac070f112c767b1ad24e499bc05cbadb79ee
FROM registry.access.redhat.com/ubi9/nginx-120:latest
# Copy build
COPY --from=builder /opt/app/dist/ /opt/app-root/src/
COPY run.sh /usr/local/bin/run.sh
Expand Down
2 changes: 1 addition & 1 deletion object-lease-operator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM quay.io/operator-framework/helm-operator:v1.42.0@sha256:102abedc1eb4ece4187eab36107cb3176e672ff6bf17d64396cd903ce13affa0
FROM quay.io/operator-framework/helm-operator:v1.42.0

### Required OpenShift Labels
LABEL name="Object Lease Operator" \
Expand Down
Loading