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

set prod images version to 1.35 #90

Merged
merged 3 commits into from
Nov 6, 2024
Merged
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
2 changes: 1 addition & 1 deletion Makefile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# To re-generate a bundle for another specific version without changing the standard setup, you can:
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
VERSION ?= 1.34.0
VERSION ?= 1.35.0
# TODO: UPDATE THIS TO THE OPERATOR image SHA when releasing
IMAGE_DIGEST ?= sha256:123456789

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@ data:
# Default image used internally by the Operator Managed Kaniko builder to create the executor pods
kanikoExecutorImageTag: gcr.io/kaniko-project/executor:v1.9.0
# The Jobs Service image to use, if empty the operator will use the default Apache Community one based on the current operator's version
jobsServicePostgreSQLImageTag: "registry.redhat.io/openshift-serverless-1/logic-jobs-service-postgresql-rhel8:1.34.0"
jobsServiceEphemeralImageTag: "registry.redhat.io/openshift-serverless-1/logic-jobs-service-ephemeral-rhel8:1.34.0"
jobsServicePostgreSQLImageTag: "registry.redhat.io/openshift-serverless-1/logic-jobs-service-postgresql-rhel8:1.35.0"
jobsServiceEphemeralImageTag: "registry.redhat.io/openshift-serverless-1/logic-jobs-service-ephemeral-rhel8:1.35.0"
# The Data Index image to use, if empty the operator will use the default Apache Community one based on the current operator's version
dataIndexPostgreSQLImageTag: "registry.redhat.io/openshift-serverless-1/logic-data-index-postgresql-rhel8:1.34.0"
dataIndexEphemeralImageTag: "registry.redhat.io/openshift-serverless-1/logic-data-index-ephemeral-rhel8:1.34.0"
dataIndexPostgreSQLImageTag: "registry.redhat.io/openshift-serverless-1/logic-data-index-postgresql-rhel8:1.35.0"
dataIndexEphemeralImageTag: "registry.redhat.io/openshift-serverless-1/logic-data-index-ephemeral-rhel8:1.35.0"
# SonataFlow base builder image used in the internal Dockerfile to build workflow applications in preview profile
# Order of precedence is:
# 1. SonataFlowPlatform in the given namespace
# 2. This configuration
# 3. The FROM in the Dockerfile in the operator's namespace "sonataflow-operator-builder-config" configMap.
# If 1 or 2, the FROM tag will be replaced by the tag se there.
# If empty the operator will use the default Apache Community one based on the current operator's version.
sonataFlowBaseBuilderImageTag: "registry.redhat.io/openshift-serverless-1/logic-swf-builder-rhel8:1.34.0"
sonataFlowBaseBuilderImageTag: "registry.redhat.io/openshift-serverless-1/logic-swf-builder-rhel8:1.35.0"
# The image to use to deploy SonataFlow workflow images in devmode profile.
# If empty the operator will use the default Apache Community one based on the current operator's version.
sonataFlowDevModeImageTag: "registry.redhat.io/openshift-serverless-1/logic-swf-devmode-rhel8:1.34.0"
sonataFlowDevModeImageTag: "registry.redhat.io/openshift-serverless-1/logic-swf-devmode-rhel8:1.35.0"
# The default name of the builder configMap in the operator's namespace
builderConfigMapName: "logic-operator-rhel8-builder-config"
# Quarkus extensions required for workflows persistence. These extensions are used by the SonataFlow build system,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ metadata:
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
repository: https://github.com/kiegroup/kogito-serverless-operator/
support: Red Hat
name: logic-operator-rhel8.v1.34.0
name: logic-operator-rhel8.v1.35.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -890,5 +890,5 @@ spec:
minKubeVersion: 1.23.0
provider:
name: Red Hat
replaces: logic-operator-rhel8.v1.33.0
version: 1.34.0
replaces: logic-operator-rhel8.v1.34.0
version: 1.35.0
2 changes: 1 addition & 1 deletion config/manager/prod/SonataFlow-Builder.containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.redhat.io/openshift-serverless-1/logic-swf-builder-rhel8:1.34.0 AS builder
FROM registry.redhat.io/openshift-serverless-1/logic-swf-builder-rhel8:1.35.0 AS builder

# variables that can be overridden by the builder
# To add a Quarkus extension to your application
Expand Down
12 changes: 6 additions & 6 deletions config/manager/prod/controllers_cfg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,22 +25,22 @@ kanikoDefaultWarmerImageTag: gcr.io/kaniko-project/warmer:v1.9.0
# Default image used internally by the Operator Managed Kaniko builder to create the executor pods
kanikoExecutorImageTag: gcr.io/kaniko-project/executor:v1.9.0
# The Jobs Service image to use, if empty the operator will use the default Apache Community one based on the current operator's version
jobsServicePostgreSQLImageTag: "registry.redhat.io/openshift-serverless-1/logic-jobs-service-postgresql-rhel8:1.34.0"
jobsServiceEphemeralImageTag: "registry.redhat.io/openshift-serverless-1/logic-jobs-service-ephemeral-rhel8:1.34.0"
jobsServicePostgreSQLImageTag: "registry.redhat.io/openshift-serverless-1/logic-jobs-service-postgresql-rhel8:1.35.0"
jobsServiceEphemeralImageTag: "registry.redhat.io/openshift-serverless-1/logic-jobs-service-ephemeral-rhel8:1.35.0"
# The Data Index image to use, if empty the operator will use the default Apache Community one based on the current operator's version
dataIndexPostgreSQLImageTag: "registry.redhat.io/openshift-serverless-1/logic-data-index-postgresql-rhel8:1.34.0"
dataIndexEphemeralImageTag: "registry.redhat.io/openshift-serverless-1/logic-data-index-ephemeral-rhel8:1.34.0"
dataIndexPostgreSQLImageTag: "registry.redhat.io/openshift-serverless-1/logic-data-index-postgresql-rhel8:1.35.0"
dataIndexEphemeralImageTag: "registry.redhat.io/openshift-serverless-1/logic-data-index-ephemeral-rhel8:1.35.0"
# SonataFlow base builder image used in the internal Dockerfile to build workflow applications in preview profile
# Order of precedence is:
# 1. SonataFlowPlatform in the given namespace
# 2. This configuration
# 3. The FROM in the Dockerfile in the operator's namespace "sonataflow-operator-builder-config" configMap.
# If 1 or 2, the FROM tag will be replaced by the tag se there.
# If empty the operator will use the default Apache Community one based on the current operator's version.
sonataFlowBaseBuilderImageTag: "registry.redhat.io/openshift-serverless-1/logic-swf-builder-rhel8:1.34.0"
sonataFlowBaseBuilderImageTag: "registry.redhat.io/openshift-serverless-1/logic-swf-builder-rhel8:1.35.0"
# The image to use to deploy SonataFlow workflow images in devmode profile.
# If empty the operator will use the default Apache Community one based on the current operator's version.
sonataFlowDevModeImageTag: "registry.redhat.io/openshift-serverless-1/logic-swf-devmode-rhel8:1.34.0"
sonataFlowDevModeImageTag: "registry.redhat.io/openshift-serverless-1/logic-swf-devmode-rhel8:1.35.0"
# The default name of the builder configMap in the operator's namespace
builderConfigMapName: "logic-operator-rhel8-builder-config"
# Quarkus extensions required for workflows persistence. These extensions are used by the SonataFlow build system,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -289,13 +289,13 @@ spec:
provider:
name: Red Hat
relatedImages:
- image: registry.redhat.io/openshift-serverless-1/logic-operator-rhel8:1.34.0
- image: registry.redhat.io/openshift-serverless-1/logic-operator-rhel8:1.35.0
name: IMAGE_LOGIC_SWF_OPERATOR
- image: registry.redhat.io/openshift-serverless-1/logic-swf-devmode-rhel8:1.34.0
- image: registry.redhat.io/openshift-serverless-1/logic-swf-devmode-rhel8:1.35.0
name: IMAGE_LOGIC_SWF_DEVMODE
- image: registry.redhat.io/openshift-serverless-1/logic-swf-builder-rhel8:1.34.0
- image: registry.redhat.io/openshift-serverless-1/logic-swf-builder-rhel8:1.35.0
name: IMAGE_LOGIC_SWF_BUILDER
- image: registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:4564ca3dc5bac80d6faddaf94c817fbbc270698a9399d8a21ee1005d85ceda56
name: IMAGE_KUBE_RBAC_PROXY
replaces: logic-operator-rhel8.v1.33.0
version: 0.0.0
replaces: logic-operator-rhel8.v1.34.0
version: 1.35.0
2 changes: 1 addition & 1 deletion images/modules/com.redhat.osl.builder/module.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

name: com.redhat.osl.builder
version: "1.34.0"
version: "1.35.0"
description: Builds the operator binary

envs:
Expand Down
2 changes: 1 addition & 1 deletion images/modules/com.redhat.osl.bundleinstall/module.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

name: com.redhat.osl.bundleinstall
version: "1.34.0"
version: "1.35.0"
description: Copy the bund files to the target image

artifacts:
Expand Down
2 changes: 1 addition & 1 deletion images/modules/com.redhat.osl.cli.artifacts/module.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

name: "com.redhat.osl.cli.artifacts"
version: "1.34.0"
version: "1.35.0"
description: "Copy binaries from the packager image"

execute:
Expand Down
2 changes: 1 addition & 1 deletion images/modules/com.redhat.osl.cli.packager/module.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

name: "com.redhat.osl.cli.packager"
version: "1.34.0"
version: "1.35.0"
description: "Download kn-workflow cli binaries from a given repository"

packages:
Expand Down
8 changes: 4 additions & 4 deletions images/osl-cli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

- name: "packager"
version: "1.34.0"
version: "1.35.0"
from: "registry.access.redhat.com/ubi8/ubi-minimal:latest"
modules:
repositories:
Expand All @@ -22,7 +22,7 @@
- name: com.redhat.osl.cli.packager

- name: "openshift-serverless-1/logic-kn-workflow-cli-artifacts-rhel8"
version: "1.34.0"
version: "1.35.0"
description: "Red Hat OpenShift Serverless Logic 1 kn-workflow CLI artifacts"
from: "registry.access.redhat.com/ubi8/ubi-minimal:latest"
labels:
Expand All @@ -31,7 +31,7 @@
- name: name
value: "openshift-serverless-1/kn-workflow-cli-artifacts-rhel8"
- name: version
value: "1.34.0"
value: "1.35.0"
- name: summary
value: "Red Hat OpenShift Serverless Logic 1 kn-workflow CLI artifacts"
- name: description
Expand Down Expand Up @@ -67,4 +67,4 @@
pulp_repos: true
repository:
name: containers/openshift-serverless-1-logic-kn-workflow-cli-artifacts
branch: openshift-serverless-1.34-rhel-8
branch: openshift-serverless-1.35-rhel-8
4 changes: 2 additions & 2 deletions images/prod-bundle-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
schema_version: 1
name: "openshift-serverless-1/logic-operator-bundle"
description: "OpenShift Serverless Logic Operator Bundle"
version: "1.34.0"
version: "1.35.0"
from: "scratch"

labels:
Expand Down Expand Up @@ -81,4 +81,4 @@ osbs:
extra_dir: osbs-extra
repository:
name: containers/openshift-serverless-1-logic-operator-bundle
branch: openshift-serverless-1.34-rhel-8
branch: openshift-serverless-1.35-rhel-8
6 changes: 3 additions & 3 deletions images/prod-operator-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

- schema_version: 1
name: "operator-builder"
version: "1.34.0"
version: "1.35.0"
from: "registry.access.redhat.com/ubi8/go-toolset:1.21"
description: "Golang builder image for the Red Hat OpenShift Serverless Logic Operator"

Expand All @@ -40,7 +40,7 @@
- aarch64

- name: "openshift-serverless-1/logic-rhel8-operator"
version: "1.34.0"
version: "1.35.0"
from: "registry.access.redhat.com/ubi8/ubi-micro:latest"
description: "Runtime Image for the Red Hat OpenShift Serverless Logic Operator"

Expand Down Expand Up @@ -69,7 +69,7 @@
extra_dir: osbs-extra
repository:
name: containers/openshift-serverless-1-logic-operator
branch: openshift-serverless-1.34-rhel-8
branch: openshift-serverless-1.35-rhel-8

run:
user: "1001"
Loading