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

KOGITO-9757 Changed property expansion to use ${property_name} #1774

Merged
merged 1 commit into from
Sep 6, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ quarkus.kubernetes.deployment-target=knative
quarkus.knative.image-pull-policy=IfNotPresent
# Use the Kogito service discovery mechanism to get the services url.
# For more information see: https://kiegroup.github.io/kogito-docs/serverlessworkflow/latest/cloud/kubernetes-service-discovery.html
quarkus.knative.env.vars.kogito_service_cluster_url=knative:services.v1.serving.knative.dev/loanbroker-example/loanbroker-flow
quarkus.knative.env.vars.credit_bureau_url=knative:services.v1.serving.knative.dev/loanbroker-example/loanbroker-credit-bureau
quarkus.knative.env.vars.aggregator_url=kubernetes:services.v1/loanbroker-example/loanbroker-aggregator
quarkus.knative.env.vars.kogito_service_cluster_url=${knative:services.v1.serving.knative.dev/loanbroker-example/loanbroker-flow}
quarkus.knative.env.vars.credit_bureau_url=${knative:services.v1.serving.knative.dev/loanbroker-example/loanbroker-credit-bureau}
quarkus.knative.env.vars.aggregator_url=${kubernetes:services.v1/loanbroker-example/loanbroker-aggregator}

# Kogito persistence configurations for enabling the serverless workflow persistence
%persistence.quarkus.container-image.group=dev.local
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Use the Kogito service discovery mechanism to get the current service url.
# For more information see: https://kiegroup.github.io/kogito-docs/serverlessworkflow/latest/cloud/kubernetes-service-discovery.html
kogito.service.url=knative:services.v1.serving.knative.dev/newsletter-showcase/subscription-flow
kogito.service.url=${knative:services.v1.serving.knative.dev/newsletter-showcase/subscription-flow}

# When the application is generated with the knative profile, it'll require a PostgreSQL database.
# Kogito persistence configurations for enabling the serverless workflow persistence
Expand Down Expand Up @@ -44,7 +44,7 @@ mp.messaging.outgoing.kogito-variables-events.method=POST
# For more information see:
# https://kiegroup.github.io/kogito-docs/serverlessworkflow/latest/cloud/kubernetes-service-discovery.html
# https://quarkus.io/guides/deploying-to-kubernetes#environment-variables-from-keyvalue-pairs
quarkus.knative.env.vars.subscription_service_url=knative:services.v1.serving.knative.dev/newsletter-showcase/subscription-service
quarkus.knative.env.vars.subscription_service_url=${knative:services.v1.serving.knative.dev/newsletter-showcase/subscription-service}

# Configure current deployment to set an env var with name POSTGRES_HOST
# For more information see: https://quarkus.io/guides/deploying-to-kubernetes#environment-variables-from-keyvalue-pairs
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Use the Kogito service discovery mechanism to get the current service url.
# For more information see: https://kiegroup.github.io/kogito-docs/serverlessworkflow/latest/cloud/kubernetes-service-discovery.html
kogito.service.url=knative:services.v1.serving.knative.dev/default/timeouts-showcase-embedded
kogito.service.url=${knative:services.v1.serving.knative.dev/default/timeouts-showcase-embedded}

# 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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ quarkus.datasource.password=pass

# Use the Kogito service discovery mechanism to get the current service url.
# For more information see: https://kiegroup.github.io/kogito-docs/serverlessworkflow/latest/cloud/kubernetes-service-discovery.html
kogito.service.url=knative:services.v1.serving.knative.dev/timeouts-showcase/timeouts-showcase-extended
kogito.service.url=${knative:services.v1.serving.knative.dev/timeouts-showcase/timeouts-showcase-extended}

# Skip user tasks and variables events sending.
kogito.events.usertasks.enabled=false
Expand Down
Loading