-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump to 1.1.27 and align with mvn templates file
- Loading branch information
Showing
1 changed file
with
17 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,34 @@ | ||
#[[ | ||
# If you're looking to use eventing with Google PubSub, to get an emulator running: | ||
# - uncomment property "-Dkalix.proxy.eventing.support=google-pubsub-emulator" | ||
# - add property "-Dkalix.proxy.eventing.support=google-pubsub-emulator" to the JAVA_TOOL_OPTIONS environment map under the kalix-runtime service | ||
# - uncomment the env var PUBSUB_EMULATOR_HOST and the section below for gcloud-pubsub-emulator service | ||
version: "3" | ||
services: | ||
kalix-proxy: | ||
image: gcr.io/kalix-public/kalix-proxy:1.1.24 | ||
command: -Dconfig.resource=dev-mode.conf -Dlogback.configurationFile=logback-dev-mode.xml #-Dkalix.proxy.eventing.support=google-pubsub-emulator | ||
kalix-runtime: | ||
image: gcr.io/kalix-public/kalix-runtime:1.1.27 | ||
ports: | ||
- "9000:9000" | ||
extra_hosts: | ||
- "host.docker.internal:host-gateway" | ||
environment: | ||
JAVA_TOOL_OPTIONS: > | ||
# jvm -D properties can be added under this environment map (note: remove this comment when adding properties) | ||
|
||
USER_FUNCTION_HOST: \${USER_FUNCTION_HOST:-host.docker.internal} | ||
USER_FUNCTION_PORT: \${USER_FUNCTION_PORT:-8080} | ||
# Comment to enable ACL check in dev-mode (see https://docs.kalix.io/services/using-acls.html#_local_development_with_acls) | ||
ACL_ENABLED: "false" | ||
# Uncomment to enable advanced view features locally (note: disabled in deployed services by default) | ||
#VIEW_FEATURES_ALL: "true" | ||
# Uncomment to disable the JWT dev secret | ||
#JWT_DEV_SECRET: "false" | ||
# Uncomment to set the JWT dev secret issuer | ||
#JWT_DEV_SECRET_ISSUER: "my-issuer" | ||
# Uncomment if using pubsub emulator | ||
#PUBSUB_EMULATOR_HOST: gcloud-pubsub-emulator | ||
#gcloud-pubsub-emulator: | ||
# image: gcr.io/google.com/cloudsdktool/cloud-sdk:341.0.0 | ||
# command: gcloud beta emulators pubsub start --project=test --host-port=0.0.0.0:8085 | ||
# ports: | ||
# - 8085:8085 | ||
]]# |