You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2021/11/10 11:42:15 UTC

[camel-k] 01/01: Release 1.7.0

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

nferraro pushed a commit to tag v1.7.0
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit 706c85dc9e94f38a22c0d4f840ec3646ccb23c40
Author: nicolaferraro <ni...@gmail.com>
AuthorDate: Wed Nov 10 12:42:09 2021 +0100

    Release 1.7.0
---
 config/manager/operator-deployment.yaml                   | 2 +-
 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, 14 insertions(+), 14 deletions(-)

diff --git a/config/manager/operator-deployment.yaml b/config/manager/operator-deployment.yaml
index d64c2fa..6ade81b 100644
--- a/config/manager/operator-deployment.yaml
+++ b/config/manager/operator-deployment.yaml
@@ -39,7 +39,7 @@ spec:
       serviceAccountName: camel-k-operator
       containers:
         - name: camel-k-operator
-          image: docker.io/apache/camel-k:1.7.0-SNAPSHOT
+          image: docker.io/apache/camel-k:1.7.0
           imagePullPolicy: IfNotPresent
           command:
             - kamel
diff --git a/config/manifests/bases/camel-k.clusterserviceversion.yaml b/config/manifests/bases/camel-k.clusterserviceversion.yaml
index b14f98b..8bebab4 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.7.0-SNAPSHOT
+    containerImage: docker.io/apache/camel-k:1.7.0
     createdAt: 2021-05-03T07:48:00Z
     description: Apache Camel K is a lightweight integration platform, born on Kubernetes, with serverless superpowers.
     operators.operatorframework.io/builder: operator-sdk-v1.3.0
diff --git a/go.mod b/go.mod
index e667828..65cfc11 100644
--- a/go.mod
+++ b/go.mod
@@ -5,9 +5,9 @@ go 1.16
 require (
 	github.com/Masterminds/semver v1.5.0
 	github.com/Microsoft/hcsshim v0.8.15 // indirect
-	github.com/apache/camel-k/pkg/apis/camel v0.0.0
-	github.com/apache/camel-k/pkg/client/camel v0.0.0
-	github.com/apache/camel-k/pkg/kamelet/repository v0.0.0
+	github.com/apache/camel-k/pkg/apis/camel v1.7.0
+	github.com/apache/camel-k/pkg/client/camel v1.7.0
+	github.com/apache/camel-k/pkg/kamelet/repository v1.7.0
 	github.com/container-tools/spectrum v0.3.4
 	github.com/containerd/continuity v0.0.0-20210208174643-50096c924a4e // indirect
 	github.com/evanphx/json-patch v4.11.0+incompatible
diff --git a/helm/camel-k/Chart.yaml b/helm/camel-k/Chart.yaml
index c7acd4c..628afb3 100644
--- a/helm/camel-k/Chart.yaml
+++ b/helm/camel-k/Chart.yaml
@@ -35,7 +35,7 @@ version: 0.8.0
 
 # 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.7.0-SNAPSHOT
+appVersion: 1.7.0
 
 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 c14011a..d28fd74 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.7.0-SNAPSHOT
+  image: docker.io/apache/camel-k:1.7.0
 
 platform:
   build:
diff --git a/pkg/client/camel/go.mod b/pkg/client/camel/go.mod
index 32f8a7d..43f52d9 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.15
 
 require (
-	github.com/apache/camel-k/pkg/apis/camel v0.0.0
+	github.com/apache/camel-k/pkg/apis/camel v1.7.0
 	k8s.io/api v0.20.2
 	k8s.io/apimachinery v0.20.2
 	k8s.io/client-go v0.20.2
diff --git a/pkg/kamelet/repository/go.mod b/pkg/kamelet/repository/go.mod
index 9137065..3e17ca3 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.15
 
 require (
-	github.com/apache/camel-k/pkg/apis/camel v0.0.0
-	github.com/apache/camel-k/pkg/client/camel v0.0.0
+	github.com/apache/camel-k/pkg/apis/camel v1.7.0
+	github.com/apache/camel-k/pkg/client/camel v1.7.0
 	github.com/google/go-github/v32 v32.1.0
 	github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7
 	github.com/stretchr/testify v1.6.1
diff --git a/pkg/resources/resources.go b/pkg/resources/resources.go
index a2cfa3d..70db4f7 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: 2397,
+			uncompressedSize: 2388,
 
-			compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x55\xc1\x72\xe2\x46\x10\xbd\xeb\x2b\x5e\xa1\xcb\x6e\x95\x01\x7b\x2f\xd9\x52\x4e\x8a\x8d\x63\x2a\x0e\x50\x88\x8d\x6b\x4f\xa9\x61\xd4\x48\x53\x1e\x4d\x2b\x33\x23\x58\xe5\xeb\x53\x23\x10\x06\xd6\x71\x72\x70\xd5\xce\x09\xa9\xbb\x5f\xbf\xd7\xfd\x34\xc4\x18\xbe\xdf\x89\x62\x3c\x2a\x49\xc6\x51\x0e\xcf\xf0\x25\x21\xad\x85\x2c\x09\x19\x6f\xfc\x4e\x58\xc2\x3d\x37\x26\x17\x5e\xb1\xc1\x87\x34\xbb\xff\x88\xc6\xe4\x64\xc1\x86\x [...]
+			compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x55\x41\x73\xe2\x46\x13\xbd\xeb\x57\xbc\x42\x97\xdd\x2a\x1b\xec\xbd\x7c\x5b\xfa\x4e\x8a\x8d\xb3\x54\x1c\xa0\x10\x1b\xd7\x9e\x52\xc3\xa8\x41\x5d\x1e\x4d\x2b\x33\x03\x2c\xf9\xf5\xa9\x11\x08\x03\xeb\x38\x39\xb8\x2a\x73\x42\xea\xee\xd7\xef\x75\x3f\x0d\x29\xae\xdf\xef\x24\x29\x1e\x59\x93\xf5\x54\x22\x08\x42\x45\xc8\x1b\xa5\x2b\x42\x21\xcb\xb0\x55\x8e\xf0\x20\x6b\x5b\xaa\xc0\x62\xf1\x21\x2f\x1e\x3e\x62\x6d\x4b\x72\x10\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 f9b26ba..90a3393 100644
--- a/pkg/util/defaults/defaults.go
+++ b/pkg/util/defaults/defaults.go
@@ -23,7 +23,7 @@ package defaults
 
 const (
 	// Version --
-	Version = "1.7.0-SNAPSHOT"
+	Version = "1.7.0"
 
 	// DefaultRuntimeVersion --
 	DefaultRuntimeVersion = "1.10.0"
diff --git a/script/Makefile b/script/Makefile
index 0bd532a..8f96beb 100644
--- a/script/Makefile
+++ b/script/Makefile
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 VERSIONFILE := pkg/util/defaults/defaults.go
-VERSION ?= 1.7.0-SNAPSHOT
+VERSION ?= 1.7.0
 OPERATOR_VERSION := $(subst -SNAPSHOT,,$(VERSION))
 LAST_RELEASED_VERSION := 1.6.1
 RUNTIME_VERSION := 1.10.0