Skip to content
This repository was archived by the owner on Jun 20, 2025. It is now read-only.

Commit 6546fc9

Browse files
authored
Merge pull request #86 from wallrj/cert-manager-v1.10.0-operatorhub-package-v1.10.1
cert-manager v1.10.0 / operatorhub package v1.10.1
2 parents fb8b785 + 618b58c commit 6546fc9

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,11 @@ CERT_MANAGER_VERSION ?= 1.10.0
1010
# Decoupled the BUNDLE_VERSION from the CERT_MANAGER_VERSION so that I can do a
1111
# patch release containing the fix for:
1212
# https://github.com/cert-manager/cert-manager/issues/5551
13-
export BUNDLE_VERSION ?= 1.10.1-rc1
14-
BUNDLE_CHANNELS ?= $(strip candidate $(if $(subst ${CERT_MANAGER_VERSION},${empty},${BUNDLE_VERSION}),,stable))
13+
export BUNDLE_VERSION ?= 1.10.1
14+
# DO NOT PUBLISH PRE-RELEASES TO THE STABLE CHANNEL!
15+
# For stable releases use: `candidate stable`.
16+
# For pre-releases use: `candidate`.
17+
BUNDLE_CHANNELS ?= candidate stable
1518
STABLE_CHANNEL ?= stable
1619
CATALOG_VERSION ?= $(shell git describe --tags --always --dirty)
1720
OPERATORHUB_CATALOG_IMAGE ?= quay.io/operatorhubio/catalog:latest

bundle/bundle.Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ LABEL operators.operatorframework.io.bundle.mediatype.v1=registry+v1
55
LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
66
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
77
LABEL operators.operatorframework.io.bundle.package.v1=cert-manager
8-
LABEL operators.operatorframework.io.bundle.channels.v1=candidate
8+
LABEL operators.operatorframework.io.bundle.channels.v1=candidate,stable
9+
LABEL operators.operatorframework.io.bundle.channel.default.v1=stable
910
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.25.0
1011
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
1112
LABEL operators.operatorframework.io.metrics.project_layout=unknown

bundle/manifests/cert-manager.clusterserviceversion.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ metadata:
6868
capabilities: Full Lifecycle
6969
categories: Security
7070
containerImage: quay.io/jetstack/cert-manager-controller:v1.10.0
71-
createdAt: '2022-11-03T15:27:18'
72-
olm.skipRange: '>=1.10.0 <1.10.1-rc1'
71+
createdAt: '2022-11-04T10:22:12'
72+
olm.skipRange: '>=1.10.0 <1.10.1'
7373
operators.operatorframework.io/builder: operator-sdk-v1.25.0
7474
operators.operatorframework.io/internal-objects: |-
7575
[
@@ -84,7 +84,7 @@ metadata:
8484
operatorframework.io/arch.arm64: supported
8585
operatorframework.io/arch.ppc64le: supported
8686
operatorframework.io/arch.s390x: supported
87-
name: cert-manager.v1.10.1-rc1
87+
name: cert-manager.v1.10.1
8888
namespace: placeholder
8989
spec:
9090
apiservicedefinitions: {}
@@ -886,7 +886,7 @@ spec:
886886
provider:
887887
name: The cert-manager maintainers
888888
url: https://cert-manager.io/
889-
version: 1.10.1-rc1
889+
version: 1.10.1
890890
webhookdefinitions:
891891
- admissionReviewVersions:
892892
- v1

bundle/metadata/annotations.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ annotations:
44
operators.operatorframework.io.bundle.manifests.v1: manifests/
55
operators.operatorframework.io.bundle.metadata.v1: metadata/
66
operators.operatorframework.io.bundle.package.v1: cert-manager
7-
operators.operatorframework.io.bundle.channels.v1: candidate
7+
operators.operatorframework.io.bundle.channels.v1: candidate,stable
8+
operators.operatorframework.io.bundle.channel.default.v1: stable
89
operators.operatorframework.io.metrics.builder: operator-sdk-v1.25.0
910
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
1011
operators.operatorframework.io.metrics.project_layout: unknown

0 commit comments

Comments
 (0)