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
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Use distroless as minimal base image to package the manager binary
# Refer to https://github.com/GoogleContainerTools/distroless for more details
FROM gcr.io/distroless/static:nonroot
FROM gcr.io/distroless/static:nonroot@sha256:e8a4044e0b4ae4257efa45fc026c0bc30ad320d43bd4c1a7d5271bd241e386d0
ARG TARGETARCH
WORKDIR /
COPY bin/manager-linux.amd64 /manager
COPY bin/manager-linux.${TARGETARCH} /manager
USER 65532:65532

ENTRYPOINT ["/manager"]
ENTRYPOINT ["/manager"]
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.7.0-dev
v0.7.1
4 changes: 2 additions & 2 deletions charts/metrics-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: metrics-operator
description: A Helm chart for the metrics-operator
type: application
version: v0.7.0
appVersion: v0.7.0
version: v0.7.1
appVersion: v0.7.1
4 changes: 2 additions & 2 deletions charts/metrics-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
replicaCount: 1

image:
repository: ghcr.io/openmcp-project/github.com/openmcp-project/metrics-operator/images/metrics-operator
repository: ghcr.io/openmcp-project/images/metrics-operator
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: v0.7.0
tag: v0.7.1

imagePullSecrets: []
nameOverride: ""
Expand Down
2 changes: 1 addition & 1 deletion charts/metrics-operator/values.yaml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
replicaCount: 1

image:
repository: ghcr.io/openmcp-project/github.com/openmcp-project/metrics-operator/images/metrics-operator
repository: ghcr.io/openmcp-project/images/metrics-operator
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: $OPERATOR_VERSION
Expand Down
5 changes: 3 additions & 2 deletions component-constructor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ components:
type: helm
path: ./charts/${COMPONENT_NAME}
repository: charts/${COMPONENT_NAME}

- name: ${COMPONENT_NAME}-image
type: ociImage
input:
type: dockermulti
repository: images/${COMPONENT_NAME}
variants:
- "${COMPONENT_REPO_PREFIX}:${VERSION}"
- "${COMPONENT_REPO_PREFIX}:${VERSION}-linux-amd64"
- "${COMPONENT_REPO_PREFIX}:${VERSION}-linux-arm64"