This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch release-1.11.x
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/release-1.11.x by this push:
     new ef863ca63 chore: bump next version to 1.11.2-SNAPSHOT
ef863ca63 is described below

commit ef863ca63ac0ddd62ffd800013d4c8f6aaeeae62
Author: Andrea Cosentino <[email protected]>
AuthorDate: Mon Jan 30 11:03:36 2023 +0100

    chore: bump next version to 1.11.2-SNAPSHOT
    
    Signed-off-by: Andrea Cosentino <[email protected]>
---
 config/manager/operator-deployment.yaml                   |  6 +++---
 config/manifests/bases/camel-k.clusterserviceversion.yaml | 10 +++++-----
 config/manifests/kustomization.yaml                       |  2 +-
 helm/camel-k/Chart.yaml                                   |  2 +-
 helm/camel-k/values.yaml                                  |  2 +-
 pkg/util/defaults/defaults.go                             |  2 +-
 script/Makefile                                           |  6 +++---
 7 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/config/manager/operator-deployment.yaml 
b/config/manager/operator-deployment.yaml
index cd492f822..293ba2614 100644
--- a/config/manager/operator-deployment.yaml
+++ b/config/manager/operator-deployment.yaml
@@ -25,7 +25,7 @@ metadata:
     name: camel-k-operator
     app.kubernetes.io/component: operator
     app.kubernetes.io/name: camel-k
-    app.kubernetes.io/version: "1.11.1-SNAPSHOT"
+    app.kubernetes.io/version: "1.11.2-SNAPSHOT"
 spec:
   replicas: 1
   strategy:
@@ -41,12 +41,12 @@ spec:
         app: "camel-k"
         app.kubernetes.io/component: operator
         app.kubernetes.io/name: camel-k
-        app.kubernetes.io/version: "1.11.1-SNAPSHOT"
+        app.kubernetes.io/version: "1.11.2-SNAPSHOT"
     spec:
       serviceAccountName: camel-k-operator
       containers:
         - name: camel-k-operator
-          image: docker.io/apache/camel-k:1.11.1-SNAPSHOT
+          image: docker.io/apache/camel-k:1.11.2-SNAPSHOT
           imagePullPolicy: IfNotPresent
           command:
             - kamel
diff --git a/config/manifests/bases/camel-k.clusterserviceversion.yaml 
b/config/manifests/bases/camel-k.clusterserviceversion.yaml
index f0e00092d..09797a4f2 100644
--- a/config/manifests/bases/camel-k.clusterserviceversion.yaml
+++ b/config/manifests/bases/camel-k.clusterserviceversion.yaml
@@ -22,8 +22,8 @@ metadata:
     capabilities: Full Lifecycle
     categories: Integration & Delivery
     certified: "false"
-    containerImage: docker.io/apache/camel-k:1.11.1-SNAPSHOT
-    createdAt: 2022-12-19T09:15:28Z
+    containerImage: docker.io/apache/camel-k:1.11.2-SNAPSHOT
+    createdAt: 2023-01-30T10:03:26Z
     description: Apache Camel K is a lightweight integration platform, born on 
Kubernetes,
       with serverless superpowers.
     operators.operatorframework.io/builder: operator-sdk-v1.16.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.11.1
+  name: camel-k.v1.11.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.11.0
+  replaces: camel-k-operator.v1.11.1
   selector:
     matchLabels:
       name: camel-k-operator
-  version: 1.11.1
+  version: 1.11.2
diff --git a/config/manifests/kustomization.yaml 
b/config/manifests/kustomization.yaml
index de2e6f2e9..d4473843a 100644
--- a/config/manifests/kustomization.yaml
+++ b/config/manifests/kustomization.yaml
@@ -34,4 +34,4 @@ patchesStrategicMerge:
 images:
 - name: docker.io/apache/camel-k
   newName: docker.io/apache/camel-k
-  newTag: 1.11.1-SNAPSHOT
+  newTag: 1.11.2-SNAPSHOT
diff --git a/helm/camel-k/Chart.yaml b/helm/camel-k/Chart.yaml
index 262172ae9..1a820ff2e 100644
--- a/helm/camel-k/Chart.yaml
+++ b/helm/camel-k/Chart.yaml
@@ -35,7 +35,7 @@ version: 0.11.3
 
 # This is the version number of the application being deployed. This version 
number should be
 # incremented each time you make changes to the application.
-appVersion: 1.11.1-SNAPSHOT
+appVersion: 1.11.2-SNAPSHOT
 
 icon: https://github.com/apache/camel/raw/main/docs/img/logo64-d.png
 home: https://camel.apache.org/camel-k/latest/
diff --git a/helm/camel-k/values.yaml b/helm/camel-k/values.yaml
index f8936cd40..a320e93bc 100644
--- a/helm/camel-k/values.yaml
+++ b/helm/camel-k/values.yaml
@@ -23,7 +23,7 @@ nameOverride: ""
 fullnameOverride: ""
 
 operator:
-  image: docker.io/apache/camel-k:1.11.1-SNAPSHOT
+  image: docker.io/apache/camel-k:1.11.2-SNAPSHOT
   global: "false"
   resources: {}
   securityContext: {}
diff --git a/pkg/util/defaults/defaults.go b/pkg/util/defaults/defaults.go
index e3fc4be87..651fe881e 100644
--- a/pkg/util/defaults/defaults.go
+++ b/pkg/util/defaults/defaults.go
@@ -23,7 +23,7 @@ package defaults
 
 const (
        // Version --
-       Version = "1.11.1-SNAPSHOT"
+       Version = "1.11.2-SNAPSHOT"
 
        // DefaultRuntimeVersion --
        DefaultRuntimeVersion = "1.16.0"
diff --git a/script/Makefile b/script/Makefile
index a25269155..f6559a07d 100644
--- a/script/Makefile
+++ b/script/Makefile
@@ -14,9 +14,9 @@
 # limitations under the License.
 
 VERSIONFILE := pkg/util/defaults/defaults.go
-VERSION ?= 1.11.1-SNAPSHOT
+VERSION ?= 1.11.2-SNAPSHOT
 LAST_RELEASED_IMAGE_NAME := camel-k-operator
-LAST_RELEASED_VERSION ?= 1.11.0
+LAST_RELEASED_VERSION ?= 1.11.1
 RUNTIME_VERSION := 1.16.0
 BUILDAH_VERSION := 1.23.3
 KANIKO_VERSION := 0.17.1
@@ -79,7 +79,7 @@ STAGING_RUNTIME_REPO :=
 # Kamelets options
 INSTALL_DEFAULT_KAMELETS ?= true
 KAMELET_CATALOG_REPO := https://github.com/apache/camel-kamelets.git
-KAMELET_CATALOG_REPO_TAG := v0.10.0
+KAMELET_CATALOG_REPO_TAG := main
 
 # When performing integration tests, it is not necessary to always execute 
build, especially
 # in e2e tests when lots of tests are being executed sequentially & the build 
has already taken place.

Reply via email to