openwhisk
openwhisk copied to clipboard
Changes in standalone.conf is not applied
Changes in standalone.conf is not applied while running
Environment details:
- ubuntu
- version 18.04
Steps to reproduce the issue:
-
vim ./core/standalone/src/main/resources/standalone.conf added host name in standalone ... standalone { host { name = "0.0.0.0" } ...
-
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
================================================================================
...
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)?