Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
6a7d017
bump version to 1.8.0 (#716)
Daniel-Fan Jul 19, 2021
7c0149e
apply k8s PreserveUnknownFields into API (#702)
Daniel-Fan Jul 19, 2021
80e4524
build(deps): bump golang from 1.15.7 to 1.16.6 (#710)
dependabot[bot] Jul 19, 2021
42f750c
fix: Make probe more loose (#717)
horis233 Jul 20, 2021
00aeb73
change tag back to latest for base image (#685)
Daniel-Fan Jul 21, 2021
96206fc
refactor ODLM cache to use one pattern of design (#721)
Daniel-Fan Jul 27, 2021
c465c79
Get csv even the installPlan requires Approval (#723)
Daniel-Fan Jul 27, 2021
aa1f42c
perf: shorten initial delay of readness probe (#725)
horis233 Jul 27, 2021
1234047
build(deps): bump golang from 1.16.6 to 1.16.7 (#728)
dependabot[bot] Aug 6, 2021
a56e18d
opt-in of ubi base image automated builds (#727)
Daniel-Fan Aug 6, 2021
63f28d4
add relatedImages to operator CSV (#729)
Daniel-Fan Aug 16, 2021
c932ad9
fix base image file name (#732)
Daniel-Fan Aug 16, 2021
629ce42
bump version to 1.9.0 (#734)
Daniel-Fan Aug 17, 2021
6c84aaa
make operatorconfig optional (#733)
ZhuoxiLi Aug 17, 2021
bbc66c8
build(deps): bump golang from 1.16.7 to 1.17.0 (#735)
dependabot[bot] Aug 18, 2021
31f741f
build: bump k8s dependencies to 1.21 (#736)
horis233 Aug 19, 2021
d687e09
fix: Operator only reconciles when watched subscriptions are updated.…
horis233 Aug 23, 2021
23d4afb
Enable Subscription config in OperandRegistry (#738)
horis233 Aug 23, 2021
816e14e
Trigger build with new base image
Aug 25, 2021
20dadf4
Trigger build with new base image
Aug 25, 2021
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
Prev Previous commit
Next Next commit
bump version to 1.9.0 (#734)
  • Loading branch information
Daniel-Fan authored Aug 17, 2021
commit 629ce4292110cf59d07c2ff821dd8aabbdae58cd
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ OPERATOR_IMAGE_NAME ?= odlm
# Current Operator bundle image name
BUNDLE_IMAGE_NAME ?= odlm-operator-bundle
# Current Operator version
OPERATOR_VERSION ?= 1.8.0
OPERATOR_VERSION ?= 1.9.0

# Kind cluster name
KIND_CLUSTER_NAME ?= "odlm"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ metadata:
createdAt: "2020-11-12T17:05:48Z"
description: The Operand Deployment Lifecycle Manager provides a Kubernetes CRD-based
API to manage the lifecycle of operands.
olm.skipRange: '>=1.2.0 <1.8.0'
olm.skipRange: '>=1.2.0 <1.9.0'
operators.operatorframework.io/builder: operator-sdk-v1.10.0+git
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
repository: https://github.com/IBM/operand-deployment-lifecycle-manager
Expand All @@ -116,7 +116,7 @@ metadata:
operatorframework.io/arch.ppc64le: supported
operatorframework.io/arch.s390x: supported
operatorframework.io/os.linux: supported
name: operand-deployment-lifecycle-manager.v1.8.0
name: operand-deployment-lifecycle-manager.v1.9.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -719,7 +719,7 @@ spec:
provider:
name: IBM
relatedImages:
- image: quay.io/opencloudio/odlm:1.8.0
- image: quay.io/opencloudio/odlm:1.9.0
name: ODLM_IMAGE
replaces: operand-deployment-lifecycle-manager.v1.7.0
version: 1.8.0
replaces: operand-deployment-lifecycle-manager.v1.8.0
version: 1.9.0
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ metadata:
createdAt: "2020-11-12T17:05:48Z"
description: The Operand Deployment Lifecycle Manager provides a Kubernetes CRD-based
API to manage the lifecycle of operands.
olm.skipRange: '>=1.2.0 <1.8.0'
olm.skipRange: '>=1.2.0 <1.9.0'
operators.operatorframework.io/builder: operator-sdk-v1.2.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v2
repository: https://github.com/IBM/operand-deployment-lifecycle-manager
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
package version

var (
Version = "1.8.0"
Version = "1.9.0"
)