You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2022/10/20 08:10:39 UTC

[camel-k] 01/02: Release 1.10.2

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

commit 9f94eb437795d7ffbb3abc624be78c906d9f633a
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Oct 18 18:12:30 2022 +0200

    Release 1.10.2
---
 config/manager/operator-deployment.yaml                   | 6 +++---
 config/manifests/bases/camel-k.clusterserviceversion.yaml | 2 +-
 go.mod                                                    | 6 +++---
 helm/camel-k/Chart.yaml                                   | 2 +-
 helm/camel-k/values.yaml                                  | 2 +-
 pkg/client/camel/go.mod                                   | 2 +-
 pkg/kamelet/repository/go.mod                             | 4 ++--
 pkg/resources/resources.go                                | 4 ++--
 pkg/util/defaults/defaults.go                             | 2 +-
 script/Makefile                                           | 2 +-
 10 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/config/manager/operator-deployment.yaml b/config/manager/operator-deployment.yaml
index 6834eeec8..79e7aff22 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.2-SNAPSHOT"
+    app.kubernetes.io/version: "1.10.2"
 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.2-SNAPSHOT"
+        app.kubernetes.io/version: "1.10.2"
     spec:
       serviceAccountName: camel-k-operator
       containers:
         - name: camel-k-operator
-          image: docker.io/apache/camel-k:1.10.2-SNAPSHOT
+          image: docker.io/apache/camel-k:1.10.2
           imagePullPolicy: IfNotPresent
           command:
             - kamel
diff --git a/config/manifests/bases/camel-k.clusterserviceversion.yaml b/config/manifests/bases/camel-k.clusterserviceversion.yaml
index 28a0f92ed..7f37fdf11 100644
--- a/config/manifests/bases/camel-k.clusterserviceversion.yaml
+++ b/config/manifests/bases/camel-k.clusterserviceversion.yaml
@@ -22,7 +22,7 @@ metadata:
     capabilities: Full Lifecycle
     categories: Integration & Delivery
     certified: "false"
-    containerImage: docker.io/apache/camel-k:1.10.2-SNAPSHOT
+    containerImage: docker.io/apache/camel-k:1.10.2
     createdAt: 2022-10-13T09:04:01Z
     description: Apache Camel K is a lightweight integration platform, born on Kubernetes,
       with serverless superpowers.
diff --git a/go.mod b/go.mod
index 98b65f867..76265cda4 100644
--- a/go.mod
+++ b/go.mod
@@ -4,9 +4,9 @@ go 1.17
 
 require (
 	github.com/Masterminds/semver v1.5.0
-	github.com/apache/camel-k/pkg/apis/camel v1.10.0
-	github.com/apache/camel-k/pkg/client/camel v1.10.0
-	github.com/apache/camel-k/pkg/kamelet/repository v1.10.0
+	github.com/apache/camel-k/pkg/apis/camel v1.10.2
+	github.com/apache/camel-k/pkg/client/camel v1.10.2
+	github.com/apache/camel-k/pkg/kamelet/repository v1.10.2
 	github.com/container-tools/spectrum v0.3.10
 	github.com/evanphx/json-patch v4.12.0+incompatible
 	github.com/fatih/camelcase v1.0.0
diff --git a/helm/camel-k/Chart.yaml b/helm/camel-k/Chart.yaml
index 5a216a808..b8c19994d 100644
--- a/helm/camel-k/Chart.yaml
+++ b/helm/camel-k/Chart.yaml
@@ -35,7 +35,7 @@ version: 0.11.1
 
 # 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.2-SNAPSHOT
+appVersion: 1.10.2
 
 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 dd6d33c7f..c5b7bd5c9 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.2-SNAPSHOT
+  image: docker.io/apache/camel-k:1.10.2
   global: "false"
   resources: {}
   securityContext: {}
diff --git a/pkg/client/camel/go.mod b/pkg/client/camel/go.mod
index 6a6210d55..4012af6b9 100644
--- a/pkg/client/camel/go.mod
+++ b/pkg/client/camel/go.mod
@@ -3,7 +3,7 @@ module github.com/apache/camel-k/pkg/client/camel
 go 1.17
 
 require (
-	github.com/apache/camel-k/pkg/apis/camel v1.10.0
+	github.com/apache/camel-k/pkg/apis/camel v1.10.2
 	k8s.io/api v0.23.5
 	k8s.io/apimachinery v0.23.5
 	k8s.io/client-go v0.23.5
diff --git a/pkg/kamelet/repository/go.mod b/pkg/kamelet/repository/go.mod
index 7081a5074..f2d1ddbc3 100644
--- a/pkg/kamelet/repository/go.mod
+++ b/pkg/kamelet/repository/go.mod
@@ -3,8 +3,8 @@ module github.com/apache/camel-k/pkg/kamelet/repository
 go 1.17
 
 require (
-	github.com/apache/camel-k/pkg/apis/camel v1.10.0
-	github.com/apache/camel-k/pkg/client/camel v1.10.0
+	github.com/apache/camel-k/pkg/apis/camel v1.10.2
+	github.com/apache/camel-k/pkg/client/camel v1.10.2
 	github.com/google/go-github/v32 v32.1.0
 	github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7
 	github.com/stretchr/testify v1.7.0
diff --git a/pkg/resources/resources.go b/pkg/resources/resources.go
index decbd31d3..fa12b1d04 100644
--- a/pkg/resources/resources.go
+++ b/pkg/resources/resources.go
@@ -170,9 +170,9 @@ var assets = func() http.FileSystem {
 		"/manager/operator-deployment.yaml": &vfsgen۰CompressedFileInfo{
 			name:             "operator-deployment.yaml",
 			modTime:          time.Time{},
-			uncompressedSize: 2752,
+			uncompressedSize: 2725,
 
-			compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\x4d\x8f\xe2\x46\x10\xbd\xfb\x57\x3c\xe1\xcb\xae\x34\x98\x61\x4f\x2b\xe7\xe4\x0c\x4c\xd6\xca\xc6\x20\xcc\x66\xb4\xa7\xa8\x69\x17\x76\x8b\x76\xb7\xd3\xdd\x86\x25\xbf\x3e\x6a\x83\x19\x60\x3e\x92\x89\x46\x8a\x4f\xd8\x55\xf5\xea\xd5\x7b\xd5\x36\x21\x86\xef\x77\x05\x21\xbe\x0a\x4e\xca\x52\x01\xa7\xe1\x2a\x42\xd2\x30\x5e\x11\x72\xbd\x76\x3b\x66\x08\xf7\xba\x55\x05\x73\x42\x2b\x7c\x48\xf2\xfb\x8f\x68\x55\x41\x06\x5a\x [...]
+			compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\x4d\x8f\xe2\x46\x10\xbd\xfb\x57\x3c\xe1\xcb\xae\x34\x03\xc3\x9c\x56\xce\xc9\x19\x98\x2c\xca\x04\x10\x66\x33\xda\x53\xd4\xb4\x0b\xdc\xa2\xdd\xed\x74\x97\x61\xc9\xaf\x8f\xda\x60\x06\x98\x8f\xec\x46\x23\xad\x4f\xd8\x55\xf5\xea\xbd\x57\xd5\x36\x31\xae\xdf\xef\x8a\x62\x3c\x28\x49\xc6\x53\x0e\xb6\xe0\x82\x90\x56\x42\x16\x84\xcc\x2e\x79\x2b\x1c\xe1\xde\xd6\x26\x17\xac\xac\xc1\x87\x34\xbb\xff\x88\xda\xe4\xe4\x60\x0d\x [...]
 		},
 		"/manager/operator-service-account.yaml": &vfsgen۰CompressedFileInfo{
 			name:             "operator-service-account.yaml",
diff --git a/pkg/util/defaults/defaults.go b/pkg/util/defaults/defaults.go
index 7bb40f4f3..a2a779c7c 100644
--- a/pkg/util/defaults/defaults.go
+++ b/pkg/util/defaults/defaults.go
@@ -23,7 +23,7 @@ package defaults
 
 const (
 	// Version --
-	Version = "1.10.2-SNAPSHOT"
+	Version = "1.10.2"
 
 	// DefaultRuntimeVersion --
 	DefaultRuntimeVersion = "1.15.1"
diff --git a/script/Makefile b/script/Makefile
index f6f22cb89..267c9c7ce 100644
--- a/script/Makefile
+++ b/script/Makefile
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 VERSIONFILE := pkg/util/defaults/defaults.go
-VERSION ?= 1.10.2-SNAPSHOT
+VERSION ?= 1.10.2
 LAST_RELEASED_IMAGE_NAME := camel-k-operator
 LAST_RELEASED_VERSION ?= 1.10.1
 RUNTIME_VERSION := 1.15.1