| # |
| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, |
| # software distributed under the License is distributed on an |
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| # KIND, either express or implied. See the License for the |
| # specific language governing permissions and limitations |
| # under the License. |
| # |
| |
| quarkus.log.category."org.kie".level=DEBUG |
| |
| # Build the application with the persistence profile to use a PostgreSQL database. |
| # Kogito persistence configurations for enabling the serverless workflow persistence |
| quarkus.datasource.db-kind=postgresql |
| kogito.persistence.type=jdbc |
| kogito.persistence.proto.marshaller=false |
| kie.flyway.enabled=true |
| kogito.persistence.query.timeout.millis=10000 |
| |
| # DB configuration, also used by the PostgreSqlQueryRecordRepository |
| # This env var will be generated with the quarkus-kubernetes plugin. See below. |
| quarkus.datasource.reactive.url=postgresql://${POSTGRES_HOST:localhost}:5432/postgres |
| quarkus.datasource.username=postgres |
| quarkus.datasource.password=pass |
| |
| ## Knative integration |
| mp.messaging.outgoing.kogito_outgoing_stream.url=${K_SINK:http://localhost:8181} |
| # this enables Knative to fetch the image information on Minikube. |
| # you can change this property with -Pknative -Dquarkus.container-image.group from the command line. |
| quarkus.container-image.group=dev.local |
| quarkus.kubernetes.deployment-target=knative |
| quarkus.knative.image-pull-policy=IfNotPresent |
| quarkus.knative.env.vars.postgres_host=qas-postgres |
| # If you followed the installation guide using Minikube and the Knative Quickstart, you won't have to change this property |
| # We are pointing directly to the internal service managed by Knative since our other service is also a ksvc :) |
| quarkus.knative.env.vars.queryservice_url=http://query-service.qas-showcase.svc.cluster.local |
| |
| # Kogito Knative integration |
| org.kie.kogito.addons.knative.eventing.generate-kogito-source=true |