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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# NOTE: This Dockerfile is used by the pipeline, but not for the 'make image' command, which uses the Dockerfile template in hack/common instead.
# Use distroless as minimal base image to package the component binary
# Refer to https://github.com/GoogleContainerTools/distroless for more details
FROM gcr.io/distroless/static:nonroot@sha256:e8a4044e0b4ae4257efa45fc026c0bc30ad320d43bd4c1a7d5271bd241e386d0
FROM gcr.io/distroless/static-debian12:nonroot@sha256:e8a4044e0b4ae4257efa45fc026c0bc30ad320d43bd4c1a7d5271bd241e386d0
ARG TARGETOS
ARG TARGETARCH
ARG COMPONENT
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.16.0-dev
v0.17.0
4 changes: 2 additions & 2 deletions charts/project-workspace-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: project-workspace-operator
description: A Helm chart for the project-workspace-operator
type: application
version: v0.16.0
appVersion: v0.16.0
version: v0.17.0
appVersion: v0.17.0
2 changes: 1 addition & 1 deletion charts/project-workspace-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ image:
repository: ghcr.io/openmcp-project/images/project-workspace-operator
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: v0.16.0
tag: v0.17.0

imagePullSecrets: []
nameOverride: ""
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require (
github.com/onsi/ginkgo/v2 v2.25.3
github.com/onsi/gomega v1.38.2
github.com/openmcp-project/controller-utils v0.19.0
github.com/openmcp-project/project-workspace-operator/api v0.16.0
github.com/openmcp-project/project-workspace-operator/api v0.17.0
github.com/stretchr/testify v1.11.1
k8s.io/api v0.34.0
k8s.io/apimachinery v0.34.0
Expand Down
9 changes: 8 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,19 @@
"rangeStrategy": "bump"
},
{
"matchPackageNames": [
"description": "Automerge submodule update",
"automerge": true,
"matchPackageNames": ["hack/common"]
},
{
"description": "Update and automerge all components from openmcp-project immediately",
"matchPackageNames": [
"github.com/openmcp-project/*"
],
"description": "Update all components from openmcp-project immediately",
"rebaseWhen": "auto",
"minimumReleaseAge": "0 days",
"automerge": true,
"enabled": true
},
{
Expand Down
Loading