openwhisk icon indicating copy to clipboard operation
openwhisk copied to clipboard

Changes in standalone.conf is not applied

Open Shariar076 opened this issue 4 years ago • 2 comments

Changes in standalone.conf is not applied while running

Environment details:

  • ubuntu
  • version 18.04

Steps to reproduce the issue:

  1. vim ./core/standalone/src/main/resources/standalone.conf added host name in standalone ... standalone { host { name = "0.0.0.0" } ...

  2. gradle core:standalone:bootRun

Provide the expected results and outputs:

...
================================================================================
Launched service details

[ 3233  ] http://0.0.0.0:3233 (Controller)
[ 3232  ] http://0.0.0.0:3232/playground (Playground)

Local working directory - /users/kab076/.openwhisk/standalone/server-3233
================================================================================
...

Provide the actual results and outputs:

...
================================================================================
Launched service details

[ 3233  ] http://172.17.0.1:3233 (Controller)
[ 3232  ] http://172.17.0.1:3232/playground (Playground)

Local working directory - /users/kab076/.openwhisk/standalone/server-3233
================================================================================

...

Shariar076 avatar Mar 27 '21 14:03 Shariar076

Are you trying to change the external hostname (ie what the wsk CLI connects to for example) or the internal hostname (a serverless function making a REST API call to the openwhisk host)?

rabbah avatar Mar 29 '21 15:03 rabbah