Skip to content

Commit

Permalink
Release 1.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
oscerd committed Nov 11, 2022
1 parent 815d493 commit 157db0c
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 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.3-SNAPSHOT"
app.kubernetes.io/version: "1.10.3"
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.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
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: 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.
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.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
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.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/
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: docker.io/apache/camel-k:1.10.3-SNAPSHOT
image: docker.io/apache/camel-k:1.10.3
global: "false"
resources: {}
securityContext: {}
Expand Down
2 changes: 1 addition & 1 deletion pkg/client/camel/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions pkg/kamelet/repository/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions pkg/resources/resources.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.3-SNAPSHOT"
Version = "1.10.3"

// DefaultRuntimeVersion --
DefaultRuntimeVersion = "1.15.2"
Expand Down
2 changes: 1 addition & 1 deletion script/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 157db0c

Please sign in to comment.