Skip to content

Commit

Permalink
chore: bumping version to 1.10.7
Browse files Browse the repository at this point in the history
  • Loading branch information
claudio4j committed May 9, 2024
1 parent c21e573 commit 8d8a895
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions config/manager/operator-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.6"
app.kubernetes.io/version: "1.10.7"
spec:
replicas: 1
strategy:
Expand All @@ -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.6"
app.kubernetes.io/version: "1.10.7"
spec:
serviceAccountName: camel-k-operator
containers:
- name: camel-k-operator
image: registry-proxy.engineering.redhat.com/rh-osbs/integration-camel-k-rhel8-operator:1.10.6
image: registry-proxy.engineering.redhat.com/rh-osbs/integration-camel-k-rhel8-operator:1.10.7
imagePullPolicy: IfNotPresent
command:
- kamel
Expand Down
2 changes: 1 addition & 1 deletion config/manifests/bases/camel-k.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ metadata:
capabilities: Full Lifecycle
categories: Integration & Delivery
certified: "false"
containerImage: registry-proxy.engineering.redhat.com/rh-osbs/integration-camel-k-rhel8-operator:1.10.6
containerImage: registry-proxy.engineering.redhat.com/rh-osbs/integration-camel-k-rhel8-operator:1.10.7
createdAt: 2022-09-21T12:01:32Z
description: Red Hat Integration - Camel K is a lightweight integration platform,
born on Kubernetes, with serverless superpowers.
Expand Down
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.6
github.com/apache/camel-k/pkg/client/camel v1.10.6
github.com/apache/camel-k/pkg/kamelet/repository v1.10.6
github.com/apache/camel-k/pkg/apis/camel v1.10.7
github.com/apache/camel-k/pkg/client/camel v1.10.7
github.com/apache/camel-k/pkg/kamelet/repository v1.10.7
github.com/container-tools/spectrum v0.3.10
github.com/evanphx/json-patch v4.12.0+incompatible
github.com/fatih/camelcase v1.0.0
Expand Down
2 changes: 1 addition & 1 deletion helm/camel-k/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.6
appVersion: 1.10.7

icon: https://github.com/apache/camel/raw/main/docs/img/logo64-d.png
home: https://camel.apache.org/camel-k/latest/
Expand Down
2 changes: 1 addition & 1 deletion helm/camel-k/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ nameOverride: ""
fullnameOverride: ""

operator:
image: registry-proxy.engineering.redhat.com/rh-osbs/integration-camel-k-rhel8-operator:1.10.6
image: registry-proxy.engineering.redhat.com/rh-osbs/integration-camel-k-rhel8-operator:1.10.7
global: "false"
resources: {}
securityContext: {}
Expand Down
2 changes: 1 addition & 1 deletion pkg/util/defaults/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ package defaults

const (
// Version --
Version = "1.10.6"
Version = "1.10.7"

// DefaultRuntimeVersion --
DefaultRuntimeVersion = "1.15.2"
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<groupId>com.redhat.integration.camel.k</groupId>
<artifactId>camel-k-version</artifactId>
<version>1.10.6</version>
<version>1.10.7</version>
<packaging>pom</packaging>

<name>Red Hat :: Integration :: Camel-K</name>
Expand Down
6 changes: 3 additions & 3 deletions script/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
# limitations under the License.

VERSIONFILE := pkg/util/defaults/defaults.go
VERSION ?= 1.10.6
VERSION ?= 1.10.7
LAST_RELEASED_IMAGE_NAME := red-hat-camel-k-operator
LAST_RELEASED_VERSION := 1.10.5
LAST_RELEASED_VERSION := 1.10.6
RUNTIME_VERSION ?= 1.15.2
BUILDAH_VERSION := 1.14.0
KANIKO_VERSION := 0.17.1
Expand All @@ -36,7 +36,7 @@ IMAGE_NAME := registry-proxy.engineering.redhat.com/rh-osbs/integration-camel-k-
# - need to preserve original image and version as used in other files
#
CUSTOM_IMAGE ?= $(IMAGE_NAME)
CUSTOM_VERSION ?= 1.10.6
CUSTOM_VERSION ?= 1.10.7
OPERATOR_VERSION := $(subst -SNAPSHOT,,$(CUSTOM_VERSION))
CUSTOM_TAG ?= $(OPERATOR_VERSION)

Expand Down

0 comments on commit 8d8a895

Please sign in to comment.