Skip to content

Commit ce4b49e

Browse files
authored
Merge branch 'main' into renovate/non-minor-deps
2 parents 955b9b8 + 0b5fc77 commit ce4b49e

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM --platform=$BUILDPLATFORM golang:1.24.3 AS builder
2+
FROM --platform=$BUILDPLATFORM golang:1.25.0 AS builder
33
ARG TARGETOS
44
ARG TARGETARCH
55

@@ -25,7 +25,7 @@ RUN make envtest \
2525
&& CGO_ENABLED=0 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} go build -a -o manager main.go
2626

2727
# Create final image
28-
FROM alpine:3.21
28+
FROM alpine:3.22
2929
WORKDIR /
3030
ENV GNUPGHOME=/tmp
3131
ENTRYPOINT ["/usr/local/bin/manager"]

api/v1alpha1/types.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,9 @@ func (r *SourceReference) Load(ctx context.Context, clnt client.Client, componen
136136
}
137137

138138
artifact := source.GetArtifact()
139+
if artifact == nil {
140+
return componentoperatorruntimetypes.NewRetriableError(fmt.Errorf("missing artifact on ready source"), ref(10*time.Second))
141+
}
139142

140143
if artifact.URL == "" {
141144
return componentoperatorruntimetypes.NewRetriableError(fmt.Errorf("source not ready (missing URL)"), ref(10*time.Second))

chart/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ apiVersion: v2
22
name: component-operator
33
description: A Helm chart for https://github.com/sap/component-operator
44
type: application
5-
version: 0.1.31
6-
appVersion: v0.1.31
5+
version: 0.1.32
6+
appVersion: v0.1.32

chart/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# component-operator
22

3-
![Version: 0.1.31](https://img.shields.io/badge/Version-0.1.31-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.1.31](https://img.shields.io/badge/AppVersion-v0.1.31-informational?style=flat-square)
3+
![Version: 0.1.32](https://img.shields.io/badge/Version-0.1.32-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.1.32](https://img.shields.io/badge/AppVersion-v0.1.32-informational?style=flat-square)
44

55
A Helm chart for https://github.com/sap/component-operator
66

0 commit comments

Comments
 (0)