Skip to content

Commit

Permalink
preparing for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
squakez committed Apr 2, 2024
1 parent c572b52 commit 2476471
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
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.13.1

# 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: 2.3.0-SNAPSHOT
appVersion: 2.3.0

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:2.3.0-SNAPSHOT
image: docker.io/apache/camel-k:2.3.0
global: "false"
resources: {}
securityContext: {}
Expand Down
6 changes: 3 additions & 3 deletions pkg/resources/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: "2.3.0-SNAPSHOT"
app.kubernetes.io/version: "2.3.0"
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: "2.3.0-SNAPSHOT"
app.kubernetes.io/version: "2.3.0"
spec:
serviceAccountName: camel-k-operator
containers:
- name: camel-k-operator
image: docker.io/apache/camel-k:2.3.0-SNAPSHOT
image: docker.io/apache/camel-k:2.3.0
imagePullPolicy: IfNotPresent
command:
- kamel
Expand Down
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:2.3.0-SNAPSHOT
containerImage: docker.io/apache/camel-k:2.3.0
createdAt: 2024-02-16T10:30:52Z
description: Apache Camel K is a lightweight integration platform, born on Kubernetes,
with serverless superpowers.
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 = "2.3.0-SNAPSHOT"
Version = "2.3.0"

// DefaultRuntimeVersion --
DefaultRuntimeVersion = "3.8.1"
Expand Down
4 changes: 2 additions & 2 deletions script/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
SHELL := /bin/bash

VERSIONFILE := pkg/util/defaults/defaults.go
VERSION ?= 2.3.0-SNAPSHOT
VERSION ?= 2.3.0
LAST_RELEASED_IMAGE_NAME := camel-k-operator
LAST_RELEASED_VERSION ?= 2.2.0
DEFAULT_RUNTIME_VERSION := 3.8.1
Expand Down Expand Up @@ -85,7 +85,7 @@ STAGING_RUNTIME_REPO :=
INSTALL_DEFAULT_KAMELETS ?= true
KAMELET_CATALOG_REPO := https://github.com/apache/camel-kamelets.git
# Make sure to use a released tag or empty if you want to get the latest development bits
KAMELET_CATALOG_REPO_TAG := v4.0.1
KAMELET_CATALOG_REPO_TAG := v4.4.1

# When performing integration tests, it is not necessary to always execute build, especially
# in e2e tests when lots of tests are being executed sequentially & the build has already taken place.
Expand Down

0 comments on commit 2476471

Please sign in to comment.