From 157db0c33fd26cfad908f2cbb7369b8acedda091 Mon Sep 17 00:00:00 2001 From: Andrea Cosentino Date: Fri, 11 Nov 2022 10:16:08 +0100 Subject: [PATCH] Release 1.10.3 --- 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 4dbc30c00c..43920e4eae 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.3" 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.3" 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.3 imagePullPolicy: IfNotPresent command: - kamel diff --git a/config/manifests/bases/camel-k.clusterserviceversion.yaml b/config/manifests/bases/camel-k.clusterserviceversion.yaml index 28e262cab8..d2db71738b 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.3-SNAPSHOT + containerImage: docker.io/apache/camel-k:1.10.3 createdAt: 2022-10-24T07:23:45Z description: Apache Camel K is a lightweight integration platform, born on Kubernetes, with serverless superpowers. diff --git a/go.mod b/go.mod index 76265cda4c..75c91c72c3 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.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/apache/camel-k/pkg/apis/camel v1.10.3 + github.com/apache/camel-k/pkg/client/camel v1.10.3 + github.com/apache/camel-k/pkg/kamelet/repository v1.10.3 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 f4df30bd90..3ab4bd85c5 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.3 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 7afe0b3e4d..289144b45f 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.3 global: "false" resources: {} securityContext: {} diff --git a/pkg/client/camel/go.mod b/pkg/client/camel/go.mod index 4012af6b9e..6b4a3b57c2 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.2 + github.com/apache/camel-k/pkg/apis/camel v1.10.3 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 f2d1ddbc38..66989228f3 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.2 - github.com/apache/camel-k/pkg/client/camel v1.10.2 + github.com/apache/camel-k/pkg/apis/camel v1.10.3 + github.com/apache/camel-k/pkg/client/camel v1.10.3 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 d8486fc677..8e8e10abb0 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\x4f\x8f\xe2\xc6\x13\xbd\xfb\x53\x3c\xe1\xcb\xae\x34\x98\x61\x7f\x97\x95\x7f\x27\x67\x60\xb2\x56\x36\x06\x61\x36\xa3\x3d\x45\x4d\xbb\xb0\x5b\xb4\xbb\x9d\xee\x36\x2c\xf9\xf4\x51\x1b\xcc\x00\xf3\x27\x99\x68\xa4\xf8\x84\x5d\x55\xaf\x5e\xbd\x57\x6d\x13\x62\xf8\x7e\x57\x10\xe2\xab\xe0\xa4\x2c\x15\x70\x1a\xae\x22\x24\x0d\xe3\x15\x21\xd7\x6b\xb7\x63\x86\x70\xaf\x5b\x55\x30\x27\xb4\xc2\x87\x24\xbf\xff\x88\x56\x15\x64\xa0\x15\x41\x1b\xd4\xda\x50\x10\x82\x6b\xe5\x8c\x58\xb5\x4e\x1b\xc8\x03\x20\x58\x69\x88\x6a\x52\xce\x46\x40\x4e\xd4\xa1\x67\xb3\x65\x7a\x37\xc5\x5a\x48\x42\x21\xec\xa1\x88\x0a\xec\x84\xab\x82\x10\xae\x12\x16\x3b\x6d\x36\x58\x6b\x03\x56\x14\xc2\x37\x66\x12\x42\xad\xb5\xa9\x0f\x34\x0c\x95\xcc\x14\x42\x95\xe0\xba\xd9\x1b\x51\x56\x0e\x7a\xa7\xc8\xd8\x4a\x34\x51\x10\x62\xe9\xc7\xc8\xef\x7b\x26\xf6\x00\xdb\xf5\x74\x1a\xdf\x75\x7b\x9c\xe1\x6c\xdc\xa3\x0a\x37\xf8\x8d\x8c\xf5\x4d\x3e\x45\xb7\x41\x88\x0f\x3e\x65\x70\x0c\x0e\x3e\xfe\x1f\x7b\xdd\xa2\x66\x7b\x28\xed\xd0\x5a\x3a\x43\xa6\x1f\x9c\x1a\x07\xa1\xc0\x75\xdd\x48\xc1\x14\xa7\xc7\xb1\x4e\x1d\x22\x74\x04\x3c\x86\x5e\x39\x26\x14\x58\x37\x06\xf4\xfa\x3c\x0d\xcc\x05\x61\x10\xa2\xbb\x2a\xe7\x9a\x78\x34\xda\xed\x76\x11\xeb\xe8\x46\xda\x94\xa3\x7e\xba\xd1\xd7\xf4\x6e\x9a\xe5\xd3\x61\x47\x39\x08\xf1\x4d\x49\xb2\x16\x86\xfe\x68\x85\xa1\x02\xab\x3d\x58\xd3\x48\xc1\xd9\x4a\x12\x24\xdb\x79\xe3\x3a\x77\x3a\xd3\x85\xc2\xce\x08\x27\x54\x79\x03\x7b\x74\x3d\x08\x2f\xdc\x79\x94\xab\xa7\x27\xec\x45\x82\x56\x60\x0a\x83\x24\x47\x9a\x0f\xf0\x53\x92\xa7\xf9\x4d\x10\xe2\x21\x5d\x7e\x99\x7d\x5b\xe2\x21\x59\x2c\x92\x6c\x99\x4e\x73\xcc\x16\xb8\x9b\x65\x93\x74\x99\xce\xb2\x1c\xb3\x7b\x24\xd9\x77\xfc\x92\x66\x93\x1b\x90\x70\x15\x19\xd0\x8f\xc6\x78\xfe\xda\x40\x78\x21\xa9\xf0\x9e\xf6\x0b\xd4\x13\xf0\xfb\xe1\xef\x6d\x43\x5c\xac\x05\x87\x64\xaa\x6c\x59\x49\x28\xf5\x96\x8c\xf2\xeb\xd1\x90\xa9\x85\xf5\x76\x5a\x30\x55\x04\x21\xa4\xa8\x85\xeb\xb6\xc8\x3e\x1d\xca\xb7\x79\xcf\xb3\x15\xb0\x46\x1c\xd7\x29\xf6\x0e\xd8\xd1\x76\x1c\x6c\x84\x2a\x62\x4c\xa8\x91\x7a\xef\x0f\x47\x50\x93\x63\x05\x73\x2c\x0e\x00\xc5\x6a\x8a\xc1\x59\x4d\x72\xb8\x19\xea\x86\x0c\x73\xda\x04\x80\x64\x2b\x92\xd6\xa7\xc0\x23\xc5\x18\x1c\x93\x06\xdd\xa3\xee\xe6\x7c\x37\xfc\x0a\x6a\x45\xca\xc5\x38\x43\x79\xa5\x41\x07\x1b\x6d\xda\x15\x19\x45\x8e\x6c\x24\xf4\x8b\x20\x4f\x33\x2f\x60\x5f\xc8\xd9\xf6\x4a\x0c\xc6\xd1\xf8\x36\xfa\xdf\x30\xcf\x92\x79\xfe\x65\xb6\x1c\x04\xde\x43\x3f\x9b\xa1\x6e\x4b\x6d\x8c\x71\x00\x58\x67\x98\xa3\x72\x7f\x98\xda\xed\x1b\x8a\xb1\x20\x6e\x88\x39\xf2\x61\x92\xc4\x9d\x36\x87\x70\xcd\x1c\xaf\xbe\x9e\xa9\xf4\xca\xac\x8e\xea\x46\x32\x47\xc7\xca\x33\xfd\xfd\x25\x2f\x40\x5e\x95\xec\x4d\xd2\xbf\x60\xdd\xdb\xa4\xff\xa7\xf2\xbf\xd9\x02\x5f\xd0\xdb\xd0\xfd\x26\xb3\x15\x9c\x12\xce\x75\xab\x5c\xf6\x9a\x06\xfe\xdd\xcf\x84\x7f\xfd\x3e\x8a\x36\xfc\x3b\xd9\x00\x51\xb3\x92\x62\x14\x9a\x6f\xc8\x78\x76\x07\x0d\x47\xc7\x92\xf8\x8a\xe2\x75\xe5\xbc\x95\x72\xae\xa5\xe0\xfb\x18\xe9\x3a\xd3\x6e\x6e\xc8\xfa\xf3\xf4\x98\xc7\x75\x5d\x33\x55\xc4\x67\x8f\x3c\xb3\x8d\x6f\x70\xf5\xec\x19\x7e\x8d\x36\xce\x5e\xd7\x9e\x66\x9d\x6b\xe3\x62\x7c\xbe\xfd\x7c\x7b\x91\xd1\xaf\x4b\x4d\xce\x08\x6e\xcf\x62\xa4\xb6\xd7\x60\x87\xd4\x87\x64\x79\xf7\xe5\xf7\x2c\xf9\x75\x9a\xcf\x93\xbb\xe9\x15\xdc\x96\xc9\x96\xee\x8d\xae\xe3\xab\x00\xb0\x16\x24\x8b\x05\xad\x9f\x46\x8e\xb1\x39\x73\x55\x7c\xda\xef\xc8\xb7\xb3\x0d\xe3\xf4\x2c\x8d\xd9\x7c\xba\x48\x96\xb3\x45\xc7\xe4\x39\x12\xcf\x2d\xee\xb3\x00\xe9\xe4\xdf\x94\xcf\x67\x93\x17\x5b\xbf\xdf\xfc\x17\xa9\x21\x4e\xaa\xfb\xef\x19\x93\x3b\xb6\xb7\xdd\x07\xa1\x5f\x07\x9c\x34\xbb\x81\x50\x05\x35\xa4\x0a\x52\x4e\x76\x5f\xeb\xd7\x8c\xeb\xa7\xfa\x8f\x6c\x95\x62\x4b\x8a\xac\x9d\x1b\xbd\xa2\x4b\x20\xff\x5f\xe2\x67\x72\xd7\xe8\x4d\x07\x3a\xaa\x88\x49\x57\xfd\x79\x1d\xec\x97\x7d\x7c\x11\x10\x4a\x38\xc1\xe4\x84\x24\xdb\xe7\xc4\xb5\x2a\x6c\x8c\x4f\x97\x07\xa2\x21\x23\x74\x71\x8a\x8e\x6f\x83\xbf\x02\x00\x00\xff\xff\x2e\x7d\xdd\xad\xc0\x0a\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\x51\x8f\xda\x46\x10\x7e\xf7\xaf\xf8\x84\x5f\x12\xe9\x0e\x8e\xf4\x25\x72\x9f\xdc\x83\x6b\x50\x53\x40\x98\x34\xca\x53\xb5\xac\x07\x7b\xc5\x7a\xd7\xdd\x1d\x43\xe8\xaf\xaf\xd6\x60\x0e\xc8\xdd\x35\xa9\x4e\xaa\x9f\xb0\x67\xe6\x9b\xef\xfb\x66\xd6\x26\xc6\xed\xeb\x5d\x51\x8c\x8f\x4a\x92\xf1\x94\x83\x2d\xb8\x24\xa4\xb5\x90\x25\x21\xb3\x6b\xde\x09\x47\x78\xb0\x8d\xc9\x05\x2b\x6b\xf0\x26\xcd\x1e\xde\xa2\x31\x39\x39\x58\x43\xb0\x0e\x95\x75\x14\xc5\x90\xd6\xb0\x53\xab\x86\xad\x83\x3e\x00\x42\x14\x8e\xa8\x22\xc3\xbe\x0f\x64\x44\x2d\xfa\x74\xb6\x9c\xdc\x8f\xb1\x56\x9a\x90\x2b\x7f\x28\xa2\x1c\x3b\xc5\x65\x14\x83\x4b\xe5\xb1\xb3\x6e\x83\xb5\x75\x10\x79\xae\x42\x63\xa1\xa1\xcc\xda\xba\xea\x40\xc3\x51\x21\x5c\xae\x4c\x01\x69\xeb\xbd\x53\x45\xc9\xb0\x3b\x43\xce\x97\xaa\xee\x47\x31\x96\x41\x46\xf6\xd0\x31\xf1\x07\xd8\xb6\x27\x5b\x7c\xb1\xcd\x51\xc3\x99\xdc\xa3\x0b\x37\xf8\x83\x9c\x0f\x4d\xde\xf5\xef\xa2\x18\x6f\x42\x4a\xef\x18\xec\xbd\xfd\x19\x7b\xdb\xa0\x12\x7b\x18\xcb\x68\x3c\x9d\x21\xd3\x57\x49\x35\x43\x19\x48\x5b\xd5\x5a\x09\x23\xe9\x51\xd6\xa9\x43\x1f\x2d\x81\x80\x61\x57\x2c\x94\x81\x68\x65\xc0\xae\xcf\xd3\x20\x38\x8a\xa3\x18\xed\x55\x32\xd7\xc9\x60\xb0\xdb\xed\xfa\xa2\xa5\xdb\xb7\xae\x18\x74\xea\x06\x1f\x27\xf7\xe3\x69\x36\xbe\x6d\x29\x47\x31\x3e\x19\x4d\xde\xc3\xd1\x5f\x8d\x72\x94\x63\xb5\x87\xa8\x6b\xad\xa4\x58\x69\x82\x16\xbb\x30\xb8\x76\x3a\xed\xd0\x95\xc1\xce\x29\x56\xa6\xb8\x81\x3f\x4e\x3d\x8a\x2f\xa6\xf3\x68\x57\x47\x4f\xf9\x8b\x04\x6b\x20\x0c\x7a\x69\x86\x49\xd6\xc3\x2f\x69\x36\xc9\x6e\xa2\x18\x9f\x27\xcb\x0f\xb3\x4f\x4b\x7c\x4e\x17\x8b\x74\xba\x9c\x8c\x33\xcc\x16\xb8\x9f\x4d\x47\x93\xe5\x64\x36\xcd\x30\x7b\x40\x3a\xfd\x82\xdf\x26\xd3\xd1\x0d\x48\x71\x49\x0e\xf4\xb5\x76\x81\xbf\x75\x50\xc1\x48\xca\xc3\x4c\xbb\x05\xea\x08\x84\xfd\x08\xf7\xbe\x26\xa9\xd6\x4a\x42\x0b\x53\x34\xa2\x20\x14\x76\x4b\xce\x84\xf5\xa8\xc9\x55\xca\x87\x71\x7a\x08\x93\x47\x31\xb4\xaa\x14\xb7\x5b\xe4\xbf\x15\x15\xda\xbc\xe6\xd9\x8a\x44\xad\x8e\xeb\x94\x84\x09\xf8\xc1\x76\x18\x6d\x94\xc9\x13\x8c\xa8\xd6\x76\x1f\x0e\x47\x54\x11\x8b\x5c\xb0\x48\x22\xc0\x88\x8a\x12\x48\x51\x91\xbe\xdd\xdc\xda\x9a\x9c\x60\xeb\x22\x40\x8b\x15\x69\x1f\x52\x10\x90\x12\xf4\x8e\x49\xbd\xf6\x51\x7b\x73\xbe\x1b\x61\x05\xad\x21\xc3\x09\xce\x50\x5e\x68\xd0\xc2\xf6\x37\xcd\x8a\x9c\x21\x26\xdf\x57\xf6\x59\x90\x6f\x33\x2f\x60\x9f\xc9\xd9\x76\x4e\xf4\x86\xfd\xe1\x5d\xff\xa7\x5e\x14\x46\x17\x24\x39\x6a\x97\xd3\x27\x18\x46\x80\x67\x27\x98\x8a\xfd\x41\x2c\xef\x6b\x4a\xb0\x20\xe9\x48\x30\x85\x30\x69\x92\x6c\xdd\x21\x5c\x09\x96\xe5\xc7\x33\x73\x5e\x90\xc8\x54\xd5\x5a\x30\x1d\x2b\xcf\x6c\x0f\x97\xbe\x00\x79\xd1\xa9\x1f\x72\xfc\x99\x89\xfd\x98\xe3\xdf\xeb\xfa\xf7\x3a\x1f\xf2\x3a\xf7\xdb\xdf\xe4\xb6\x4a\x52\x2a\xa5\x6d\x0c\x4f\x5f\x92\x1e\xde\xf4\x42\x85\x97\xed\xa3\x57\xb7\xff\xe6\x16\xa0\x2a\x51\x50\x82\xdc\xca\x0d\xb9\x40\xea\x60\xdd\xe0\x58\x92\x1c\x98\x5d\x17\xcc\x1b\xad\xe7\x56\x2b\xb9\x4f\x30\x59\x4f\x2d\xcf\x1d\xf9\x70\x68\x1e\xf3\xa4\xad\x2a\x61\xf2\xe4\xec\x51\x20\xb4\x09\xb8\x57\xcf\x9e\xa0\x55\x5b\xc7\xfe\xba\xf6\x24\x71\x6e\x1d\x27\x78\x7f\xf7\xfe\xee\x22\xa3\x5b\x8e\x8a\xd8\x29\xe9\xcf\x62\x64\xb6\xd7\x60\x87\xd4\xcf\xe9\xf2\xfe\xc3\x9f\xd3\xf4\xf7\x71\x36\x4f\xef\xc7\x57\x70\x5b\xa1\x1b\x7a\x70\xb6\x4a\xae\x02\xc0\x5a\x91\xce\x17\xb4\xfe\x36\x72\x8c\xcd\x05\x97\xc9\x69\x9b\xfb\xa1\x9d\xaf\x85\xa4\x27\x69\xcc\xe6\xe3\x45\xba\x9c\x2d\x5a\x26\x4f\x91\x78\x6a\x4d\x9f\x04\x98\x8c\xfe\x4b\xf9\x7c\x36\x7a\xb6\xf5\xeb\xe9\xbf\x48\x8d\x71\x72\x3d\x7c\xb4\x84\xde\x89\xbd\x6f\xdf\xfa\xdd\x3a\xe0\xe4\xd9\x0d\x94\xc9\xa9\x26\x93\x93\x61\xdd\x7e\x92\x5f\x1a\x5c\xa7\xea\x7f\x1a\xab\x56\x5b\x32\xe4\xfd\xdc\xd9\x15\x5d\x02\x85\x3f\x0c\xbf\x12\x5f\xa3\xd7\x2d\xe8\xa0\x24\xa1\xb9\xfc\xfb\x3a\xd8\x2d\xfb\xf0\x22\xa0\x8c\x62\x25\xf4\x88\xb4\xd8\x67\x24\xad\xc9\x7d\x82\x77\x97\x07\xa2\x26\xa7\x6c\x7e\x8a\x0e\xef\xa2\x7f\x02\x00\x00\xff\xff\xae\xcb\x90\x26\xa5\x0a\x00\x00"), }, "/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 d2d95c7a63..a6659dc4aa 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.3" // DefaultRuntimeVersion -- DefaultRuntimeVersion = "1.15.2" diff --git a/script/Makefile b/script/Makefile index 43c4df967a..d2053150d4 100644 --- a/script/Makefile +++ b/script/Makefile @@ -14,7 +14,7 @@ # limitations under the License. VERSIONFILE := pkg/util/defaults/defaults.go -VERSION ?= 1.10.3-SNAPSHOT +VERSION ?= 1.10.3 LAST_RELEASED_IMAGE_NAME := camel-k-operator LAST_RELEASED_VERSION ?= 1.10.2 RUNTIME_VERSION := 1.15.2