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

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


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

commit b5fbcc42a6b14cdf8b55a6f808b12af10011528a
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Mon Nov 14 11:48:48 2022 +0100

    chore: bump next version to 1.10.4-SNAPSHOT
    
    Signed-off-by: Andrea Cosentino <anco...@gmail.com>
---
 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                                           |  4 ++--
 7 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/config/manager/operator-deployment.yaml 
b/config/manager/operator-deployment.yaml
index 4dbc30c00..a8696e126 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.10.3-SNAPSHOT"
+    app.kubernetes.io/version: "1.10.4-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.10.3-SNAPSHOT"
+        app.kubernetes.io/version: "1.10.4-SNAPSHOT"
     spec:
       serviceAccountName: camel-k-operator
       containers:
         - name: camel-k-operator
-          image: docker.io/apache/camel-k:1.10.3-SNAPSHOT
+          image: docker.io/apache/camel-k:1.10.4-SNAPSHOT
           imagePullPolicy: IfNotPresent
           command:
             - kamel
diff --git a/config/manifests/bases/camel-k.clusterserviceversion.yaml 
b/config/manifests/bases/camel-k.clusterserviceversion.yaml
index 28e262cab..17cb83a67 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.10.3-SNAPSHOT
-    createdAt: 2022-10-24T07:23:45Z
+    containerImage: docker.io/apache/camel-k:1.10.4-SNAPSHOT
+    createdAt: 2022-11-14T10:48:13Z
     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.3
+  name: camel-k.v1.10.4
   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.2
+  replaces: camel-k-operator.v1.10.3
   selector:
     matchLabels:
       name: camel-k-operator
-  version: 1.10.3
+  version: 1.10.4
diff --git a/config/manifests/kustomization.yaml 
b/config/manifests/kustomization.yaml
index c5ae9caa6..bd8fae69f 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.10.3-SNAPSHOT
+  newTag: 1.10.4-SNAPSHOT
diff --git a/helm/camel-k/Chart.yaml b/helm/camel-k/Chart.yaml
index f4df30bd9..a1df57f76 100644
--- a/helm/camel-k/Chart.yaml
+++ b/helm/camel-k/Chart.yaml
@@ -35,7 +35,7 @@ version: 0.11.2
 
 # 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.10.3-SNAPSHOT
+appVersion: 1.10.4-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 7afe0b3e4..6fb171863 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.10.3-SNAPSHOT
+  image: docker.io/apache/camel-k:1.10.4-SNAPSHOT
   global: "false"
   resources: {}
   securityContext: {}
diff --git a/pkg/util/defaults/defaults.go b/pkg/util/defaults/defaults.go
index d2d95c7a6..82609e27f 100644
--- a/pkg/util/defaults/defaults.go
+++ b/pkg/util/defaults/defaults.go
@@ -23,7 +23,7 @@ package defaults
 
 const (
        // Version --
-       Version = "1.10.3-SNAPSHOT"
+       Version = "1.10.4-SNAPSHOT"
 
        // DefaultRuntimeVersion --
        DefaultRuntimeVersion = "1.15.2"
diff --git a/script/Makefile b/script/Makefile
index 43c4df967..63bec7622 100644
--- a/script/Makefile
+++ b/script/Makefile
@@ -14,9 +14,9 @@
 # limitations under the License.
 
 VERSIONFILE := pkg/util/defaults/defaults.go
-VERSION ?= 1.10.3-SNAPSHOT
+VERSION ?= 1.10.4-SNAPSHOT
 LAST_RELEASED_IMAGE_NAME := camel-k-operator
-LAST_RELEASED_VERSION ?= 1.10.2
+LAST_RELEASED_VERSION ?= 1.10.3
 RUNTIME_VERSION := 1.15.2
 BUILDAH_VERSION := 1.23.3
 KANIKO_VERSION := 0.17.1

Reply via email to