Skip to content

Commit 55fa8d5

Browse files
chore: pin OLM to v0.28.0 (#610)
The latest version (0.29.0) fails to deploy on Kind. Signed-off-by: Simon Pasquier <[email protected]>
1 parent ab4338f commit 55fa8d5

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
lines changed

.github/e2e-tests-olm/action.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,11 @@ runs:
3131
- name: Install required tools
3232
uses: ./.github/tools-cache
3333

34+
# Pin to OLM v0.28.0 because v0.29.0 fails on Kind.
35+
# https://github.com/operator-framework/operator-lifecycle-manager/issues/3419
3436
- name: Install OLM
3537
shell: bash
36-
run: ./tmp/bin/operator-sdk olm install
38+
run: ./tmp/bin/operator-sdk olm install --version 0.28.0
3739

3840
- name: Create a local docker registry in the Kind cluster
3941
shell: bash

.github/tools

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ golangci-lint v1.61.0
44
controller-gen v0.16.2
55
kustomize v4.5.2
66
oc v4.8.11
7-
operator-sdk v1.36.1
7+
operator-sdk v1.37.0
88
opm v1.47.0
99
promq v0.0.1
1010
crdoc v0.5.2

Makefile.tools

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ KUSTOMIZE=$(TOOLS_DIR)/kustomize
1414
KUSTOMIZE_VERSION= v4.5.2
1515

1616
OPERATOR_SDK = $(TOOLS_DIR)/operator-sdk
17-
OPERATOR_SDK_VERSION = v1.36.1
17+
OPERATOR_SDK_VERSION = v1.37.0
1818

1919
OPM=$(TOOLS_DIR)/opm
2020
OPM_VERSION = v1.47.0

bundle.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
77
LABEL operators.operatorframework.io.bundle.package.v1=observability-operator
88
LABEL operators.operatorframework.io.bundle.channels.v1=development
99
LABEL operators.operatorframework.io.bundle.channel.default.v1=development
10-
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.36.1
10+
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.37.0
1111
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
1212
LABEL operators.operatorframework.io.metrics.project_layout=unknown
1313

bundle/manifests/observability-operator.clusterserviceversion.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ metadata:
4242
categories: Monitoring
4343
certified: "false"
4444
containerImage: observability-operator:0.4.2
45-
createdAt: "2024-10-24T10:14:51Z"
45+
createdAt: "2024-10-29T09:23:51Z"
4646
description: A Go based Kubernetes operator to setup and manage highly available
4747
Monitoring Stack using Prometheus, Alertmanager and Thanos Querier.
48-
operators.operatorframework.io/builder: operator-sdk-v1.36.1
48+
operators.operatorframework.io/builder: operator-sdk-v1.37.0
4949
operators.operatorframework.io/internal-objects: |-
5050
[
5151
"prometheuses.monitoring.rhobs",

bundle/metadata/annotations.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ annotations:
66
operators.operatorframework.io.bundle.package.v1: observability-operator
77
operators.operatorframework.io.bundle.channels.v1: development
88
operators.operatorframework.io.bundle.channel.default.v1: development
9-
operators.operatorframework.io.metrics.builder: operator-sdk-v1.36.1
9+
operators.operatorframework.io.metrics.builder: operator-sdk-v1.37.0
1010
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
1111
operators.operatorframework.io.metrics.project_layout: unknown
1212

0 commit comments

Comments
 (0)