Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump next version to 1.10.6-SNAPSHOT #5152

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.5-SNAPSHOT"
app.kubernetes.io/version: "1.10.6-SNAPSHOT"
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.5-SNAPSHOT"
app.kubernetes.io/version: "1.10.6-SNAPSHOT"
spec:
serviceAccountName: camel-k-operator
containers:
- name: camel-k-operator
image: docker.io/apache/camel-k:1.10.5-SNAPSHOT
image: docker.io/apache/camel-k:1.10.6-SNAPSHOT
imagePullPolicy: IfNotPresent
command:
- kamel
Expand Down
10 changes: 5 additions & 5 deletions config/manifests/bases/camel-k.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ metadata:
capabilities: Full Lifecycle
categories: Integration & Delivery
certified: "false"
containerImage: docker.io/apache/camel-k:1.10.5-SNAPSHOT
createdAt: 2023-01-30T10:01:31Z
containerImage: docker.io/apache/camel-k:1.10.6-SNAPSHOT
createdAt: 2024-02-09T14:47:40Z
description: Apache Camel K is a lightweight integration platform, born on Kubernetes,
with serverless superpowers.
operators.operatorframework.io/builder: operator-sdk-v1.3.0
operators.operatorframework.io/internal-objects: '["builds.camel.apache.org","integrationkits.camel.apache.org","camelcatalogs.camel.apache.org"]'
operators.operatorframework.io/project_layout: go.kubebuilder.io/v2
repository: https://github.com/apache/camel-k
support: Camel
name: camel-k.v1.10.5
name: camel-k.v1.10.6
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -153,8 +153,8 @@ spec:
minKubeVersion: 1.11.0
provider:
name: The Apache Software Foundation
replaces: camel-k-operator.v1.10.4
replaces: camel-k-operator.v1.10.5
selector:
matchLabels:
name: camel-k-operator
version: 1.10.5
version: 1.10.6
2 changes: 1 addition & 1 deletion config/manifests/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ patchesStrategicMerge:
images:
- name: docker.io/apache/camel-k
newName: docker.io/apache/camel-k
newTag: 1.10.5-SNAPSHOT
newTag: 1.10.6-SNAPSHOT
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.5-SNAPSHOT
appVersion: 1.10.6-SNAPSHOT

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.5-SNAPSHOT
image: docker.io/apache/camel-k:1.10.6-SNAPSHOT
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.5-SNAPSHOT"
Version = "1.10.6-SNAPSHOT"

// DefaultRuntimeVersion --
DefaultRuntimeVersion = "1.15.3-SNAPSHOT"
Expand Down
4 changes: 2 additions & 2 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.5-SNAPSHOT
VERSION ?= 1.10.6-SNAPSHOT
LAST_RELEASED_IMAGE_NAME := camel-k-operator
LAST_RELEASED_VERSION ?= 1.10.4
LAST_RELEASED_VERSION ?= 1.10.5
RUNTIME_VERSION := 1.15.3-SNAPSHOT
BUILDAH_VERSION := 1.23.3
KANIKO_VERSION := 0.17.1
Expand Down
Loading