forked from apache/incubator-kie-kogito-serverless-operator
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NO-ISSUE: Must have changes to reflect prod requirements in manifests…
… files (#48) Signed-off-by: Ricardo Zanini <[email protected]>
- Loading branch information
1 parent
ee948de
commit 8c4658d
Showing
12 changed files
with
16,980 additions
and
549 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 8 additions & 10 deletions
18
bundle.prod/manifests/logic-operator-rhel8-builder-config_v1_configmap.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1,276 changes: 756 additions & 520 deletions
1,276
bundle.prod/manifests/logic-operator-rhel8.clusterserviceversion.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
15,924 changes: 15,924 additions & 0 deletions
15,924
bundle.prod/manifests/sonataflow.org_sonataflowplatforms.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: controller-manager | ||
namespace: system | ||
spec: | ||
template: | ||
spec: | ||
containers: | ||
- name: manager | ||
volumeMounts: | ||
- name: controllers-config | ||
mountPath: /config/controllers_cfg.yaml | ||
subPath: controllers_cfg.yaml | ||
volumes: | ||
- name: controllers-config | ||
configMap: | ||
name: controllers-config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# The default size of Kaniko PVC when using the internal operator builder manager | ||
defaultPvcKanikoSize: 1Gi | ||
# How much time (in seconds) to wait for a devmode workflow to start. | ||
# This information is used for the controller manager to create new devmode containers and setup the healthcheck probes. | ||
healthFailureThresholdDevMode: 50 | ||
# Default image used internally by the Operator Managed Kaniko builder to create the warmup pods | ||
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.33.0" | ||
jobsServiceEphemeralImageTag: "registry.redhat.io/openshift-serverless-1/logic-jobs-service-ephemeral-rhel8:1.33.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.33.0" | ||
dataIndexEphemeralTag: "registry.redhat.io/openshift-serverless-1/logic-data-index-ephemeral-rhel8:1.33.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.33.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.33.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, | ||
# in cases where the workflow being built has configured postgresql persistence. | ||
postgreSQLPersistenceExtensions: | ||
- groupId: com.redhat.quarkus.platform | ||
artifactId: quarkus-jdbc-postgresql | ||
version: 3.8.4.redhat-00002 | ||
- groupId: com.redhat.quarkus.platform | ||
artifactId: quarkus-agroal | ||
version: 3.8.4.redhat-00002 | ||
- groupId: org.kie | ||
artifactId: kie-addons-quarkus-persistence-jdbc | ||
version: 9.100.0.redhat-00004 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.