Skip to content

Commit 5950f5b

Browse files
author
Jenkins CI
committed
[1.41.x] Update version to 1.41.0-snapshot
1 parent ac97fd0 commit 5950f5b

10 files changed

+13
-13
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# To re-generate a bundle for another specific version without changing the standard setup, you can:
44
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
55
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
6-
VERSION ?= 2.0.0-snapshot
6+
VERSION ?= 1.41.0-snapshot
77

88
# CHANNELS define the bundle channels used in the bundle.
99
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")

bundle/manifests/sonataflow-operator-builder-config_v1_configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
data:
33
DEFAULT_BUILDER_RESOURCE_NAME: Dockerfile
44
DEFAULT_WORKFLOW_EXTENSION: .sw.json
5-
Dockerfile: "FROM quay.io/kiegroup/kogito-swf-builder-nightly:latest AS builder\n
5+
Dockerfile: "FROM quay.io/kiegroup/kogito-swf-builder-nightly:1.41 AS builder\n
66
\ \n # Copy from build context to skeleton resources project\nCOPY * ./resources/\n\nRUN
77
/home/kogito/launch/build-app.sh ./resources\n \n #=============================\n
88
\ # Runtime Run\n #=============================\nFROM registry.access.redhat.com/ubi8/openjdk-11:latest\n\nENV

bundle/manifests/sonataflow-operator.clusterserviceversion.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ metadata:
101101
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
102102
repository: https://github.com/kiegroup/kogito-serverless-operator
103103
support: Red Hat
104-
name: sonataflow-operator.v2.0.0-snapshot
104+
name: sonataflow-operator.v1.41
105105
namespace: placeholder
106106
spec:
107107
apiservicedefinitions: {}
@@ -446,7 +446,7 @@ spec:
446446
valueFrom:
447447
fieldRef:
448448
fieldPath: metadata.namespace
449-
image: quay.io/kiegroup/kogito-serverless-operator-nightly:2.0.0-snapshot
449+
image: quay.io/kiegroup/kogito-serverless-operator-nightly:1.41
450450
livenessProbe:
451451
httpGet:
452452
path: /healthz
@@ -537,4 +537,4 @@ spec:
537537
minKubeVersion: 1.23.0
538538
provider:
539539
name: Red Hat
540-
version: 2.0.0-snapshot
540+
version: 1.41

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ kind: Kustomization
2020
images:
2121
- name: controller
2222
newName: quay.io/kiegroup/kogito-serverless-operator-nightly
23-
newTag: 2.0.0-snapshot
23+
newTag: 1.41.0-snapshot
2424
# Patching the manager deployment file to add an env var with the operator namespace in
2525
patchesJson6902:
2626
- patch: |-

config/manager/sonataflow_builder_dockerfile.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM quay.io/kiegroup/kogito-swf-builder-nightly:latest AS builder
1+
FROM quay.io/kiegroup/kogito-swf-builder-nightly:1.41 AS builder
22

33
# Copy from build context to skeleton resources project
44
COPY * ./resources/

container-builder/examples/api/PlatformBuild_usingKanikowithCache.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: platform-kaniko-using-cache
22
spec:
33
publishStrategy: "Kaniko"
4-
baseImage: quay.io/kiegroup/kogito-swf-builder-nightly:latest
4+
baseImage: quay.io/kiegroup/kogito-swf-builder-nightly:1.41
55
registry:
66
address: quay.io/kiegroup
77
secret: regcred

image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
- name: org.kie.kogito.app.builder
1212

1313
- name: kogito-serverless-operator
14-
version: 2.0.0-snapshot
14+
version: 1.41.0-snapshot
1515
from: registry.access.redhat.com/ubi8/ubi-micro:latest
1616
description: Runtime Image for the Operator
1717

operator.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3067,7 +3067,7 @@ apiVersion: v1
30673067
data:
30683068
DEFAULT_BUILDER_RESOURCE_NAME: Dockerfile
30693069
DEFAULT_WORKFLOW_EXTENSION: .sw.json
3070-
Dockerfile: "FROM quay.io/kiegroup/kogito-swf-builder-nightly:latest AS builder\n
3070+
Dockerfile: "FROM quay.io/kiegroup/kogito-swf-builder-nightly:1.41 AS builder\n
30713071
\ \n # Copy from build context to skeleton resources project\nCOPY * ./resources/\n\nRUN
30723072
/home/kogito/launch/build-app.sh ./resources\n \n #=============================\n
30733073
\ # Runtime Run\n #=============================\nFROM registry.access.redhat.com/ubi8/openjdk-11:latest\n\nENV
@@ -3175,7 +3175,7 @@ spec:
31753175
valueFrom:
31763176
fieldRef:
31773177
fieldPath: metadata.namespace
3178-
image: quay.io/kiegroup/kogito-serverless-operator-nightly:2.0.0-snapshot
3178+
image: quay.io/kiegroup/kogito-serverless-operator-nightly:1.41.0-snapshot
31793179
livenessProbe:
31803180
httpGet:
31813181
path: /healthz

test/testdata/sonataflow.org_v1alpha08_sonataflowplatform_withCache_minikube.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ metadata:
1818
name: sonataflow-platform
1919
spec:
2020
platform:
21-
baseImage: quay.io/kiegroup/kogito-swf-builder-nightly:latest
21+
baseImage: quay.io/kiegroup/kogito-swf-builder-nightly:1.41
2222
buildStrategyOptions:
2323
KanikoBuildCacheEnabled: "true"

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020

2121
const (
2222
// Current version
23-
OperatorVersion = "2.0.0-snapshot"
23+
OperatorVersion = "1.41.0-snapshot"
2424

2525
// Should not be changed
2626
snapshotSuffix = "snapshot"

0 commit comments

Comments
 (0)