diff options
author | vempo <vitaliy.emporopulo@amdocs.com> | 2018-10-23 11:57:12 +0300 |
---|---|---|
committer | vempo <vitaliy.emporopulo@amdocs.com> | 2018-10-23 12:16:42 +0300 |
commit | 3aa0ca29666aaed82836a2861cd199f78f6f378d (patch) | |
tree | 73f836c0dae6051810cc769690c0203549ca9d56 | |
parent | a7d3b1dd5d9cc64eceb701085f4252da8a6839fc (diff) |
Removed healthcheck config from README
Minor improvements, proofreading.
Change-Id: I89be90ca9e69fc71771a651edd3010bd2c252213
Issue-ID: SDC-1743
Signed-off-by: vempo <vitaliy.emporopulo@amdocs.com>
-rw-r--r-- | README.md | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -85,13 +85,13 @@ You can also see the logs of the initialization container using `docker logs wor `docker run -d -e SDC_PROTOCL=http/https -e SDC_ENDPOINT=<sdc-host>:<sdc-port> -e SDC_USER=<sdc-username> -e SDC_PASSWORD=<sdc-password> -e CS_HOSTS=<cassandra-hosts> -e CS_PORT=<cassandra-port> -e CS_AUTHENTICATE=true/false -e CS_USER=<cassandra-user> -e CS_PASSWORD=<cassandra-password> --e JAVA_OPTIONS=<jvm-options> -e SHOW_HEALTH=<heathcheck-mode> nexus3.onap.org:10001/onap/workflow-backend:latest` +-e JAVA_OPTIONS=<jvm-options> nexus3.onap.org:10001/onap/workflow-backend:latest` ### Environment Variables - SDC_PROTOCOL — protocol to be used for calling SDC APIs (http or https). -- SDC_ENDPOINT — the base path of SDC external API, in the format ="10.247.41.20:8080" +- SDC_ENDPOINT — the base path of SDC external API, in the format `host:port`, where *host* is a SDC backend server, and *port* is usually 8080. - SDC_USER — Workflow consumer username @@ -110,10 +110,6 @@ assumed if this variable is not specified. - JAVA_OPTIONS — optionally, JVM (Java Virtual Machine) arguments. -- SHOW_HEALTH — how health information will be exposed, as documented in -[Spring Boot](https://docs.spring.io/spring-boot/docs/current/reference/html/production-ready-endpoints.html#production-ready-health) documentation. -The default for Workflow designer is *always*. - ### Example Assuming you have a dedicated Cassandra container as described in Database section, and the access to it is not @@ -194,10 +190,12 @@ Let's assume that hostname of the machine that runs Docker containers with the W section of *AUTO.json* will look like below: ``` + "Plugins": { "WORKFLOW": { "workflow_discovery_url": "http://workflow.example.com:9088/ping", "workflow_source_url": "http://workflow.example.com:9088" } }, + ``` |