You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openwhisk.apache.org by GitBox <gi...@apache.org> on 2021/03/27 14:23:16 UTC

[GitHub] [openwhisk] Shariar076 opened a new issue #5096: Changes in standalone.conf is not applied

Shariar076 opened a new issue #5096:
URL: https://github.com/apache/openwhisk/issues/5096


   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
   ================================================================================
   
   ...
   ```
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [openwhisk] rabbah edited a comment on issue #5096: Changes in standalone.conf is not applied

Posted by GitBox <gi...@apache.org>.
rabbah edited a comment on issue #5096:
URL: https://github.com/apache/openwhisk/issues/5096#issuecomment-809494602


   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)?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [openwhisk] rabbah edited a comment on issue #5096: Changes in standalone.conf is not applied

Posted by GitBox <gi...@apache.org>.
rabbah edited a comment on issue #5096:
URL: https://github.com/apache/openwhisk/issues/5096#issuecomment-809494602


   I think this is a bug - confirmed that overriding the host/port with a local conf file did not have the intended effect.
   I created my own conf file:
   ```
   include classpath("standalone.conf")
   
   whisk {
     standalone {
       host {
         port = "1111"
         name = "xxx"
       }
     }
     runtimes {
       bypass-pull-for-local-images: true
     }
   }
   ```
   
   And run `wskdev standalone -a"--args='-c /path/to/myapplication.conf'"`


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [openwhisk] rabbah commented on issue #5096: Changes in standalone.conf is not applied

Posted by GitBox <gi...@apache.org>.
rabbah commented on issue #5096:
URL: https://github.com/apache/openwhisk/issues/5096#issuecomment-809494602


   I think this is a bug - confirmed that overriding the host/port with a local conf file did not have the intended effect.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org