diff --git a/config/manifests/bases/camel-k.clusterserviceversion.yaml b/config/manifests/bases/camel-k.clusterserviceversion.yaml index 8bec87ea54..28a0f92edf 100644 --- a/config/manifests/bases/camel-k.clusterserviceversion.yaml +++ b/config/manifests/bases/camel-k.clusterserviceversion.yaml @@ -23,7 +23,7 @@ metadata: categories: Integration & Delivery certified: "false" containerImage: docker.io/apache/camel-k:1.10.2-SNAPSHOT - createdAt: 2022-09-07T08:57:35Z + createdAt: 2022-10-13T09:04:01Z description: Apache Camel K is a lightweight integration platform, born on Kubernetes, with serverless superpowers. operators.operatorframework.io/builder: operator-sdk-v1.3.0 @@ -31,7 +31,7 @@ metadata: operators.operatorframework.io/project_layout: go.kubebuilder.io/v2 repository: https://github.com/apache/camel-k support: Camel - name: camel-k.v1.10.1 + name: camel-k.v1.10.2 namespace: placeholder spec: apiservicedefinitions: {} @@ -153,8 +153,8 @@ spec: minKubeVersion: 1.11.0 provider: name: The Apache Software Foundation - replaces: camel-k-operator.v1.10.0 + replaces: camel-k-operator.v1.10.1 selector: matchLabels: name: camel-k-operator - version: 1.10.1 + version: 1.10.2 diff --git a/config/manifests/kustomization.yaml b/config/manifests/kustomization.yaml index 408829e475..f4fd23aa96 100644 --- a/config/manifests/kustomization.yaml +++ b/config/manifests/kustomization.yaml @@ -31,3 +31,7 @@ resources: patchesStrategicMerge: - patch-delete-user-cluster-role.yaml +images: +- name: docker.io/apache/camel-k + newName: docker.io/apache/camel-k + newTag: 1.10.2-SNAPSHOT diff --git a/pkg/util/defaults/defaults.go b/pkg/util/defaults/defaults.go index bdc1031677..dfd97ed554 100644 --- a/pkg/util/defaults/defaults.go +++ b/pkg/util/defaults/defaults.go @@ -23,7 +23,7 @@ package defaults const ( // Version -- - Version = "1.10.1-SNAPSHOT" + Version = "1.10.2-SNAPSHOT" // DefaultRuntimeVersion -- DefaultRuntimeVersion = "1.15.0" diff --git a/script/Makefile b/script/Makefile index 656853456b..cb0c5a6656 100644 --- a/script/Makefile +++ b/script/Makefile @@ -14,9 +14,9 @@ # limitations under the License. VERSIONFILE := pkg/util/defaults/defaults.go -VERSION ?= 1.10.1-SNAPSHOT +VERSION ?= 1.10.2-SNAPSHOT LAST_RELEASED_IMAGE_NAME := camel-k-operator -LAST_RELEASED_VERSION ?= 1.10.0 +LAST_RELEASED_VERSION ?= 1.10.1 RUNTIME_VERSION := 1.15.0 BUILDAH_VERSION := 1.23.3 KANIKO_VERSION := 0.17.1