Skip to content

Commit

Permalink
KOGITO-9757 Changed property expansion to use ${property_name} (#1774)
Browse files Browse the repository at this point in the history
Signed-off-by: Helber Belmiro <[email protected]>
  • Loading branch information
hbelmiro authored Sep 6, 2023
1 parent 12195f5 commit 6ac7572
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
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

0 comments on commit 6ac7572

Please sign in to comment.