hyzheng-1 opened a new issue, #5466: URL: https://github.com/apache/openwhisk/issues/5466
ubuntu 20.04 I have run : git clone https://github.com/apache/incubator-openwhisk.git cd ./incubator-openwhisk/tools/ubuntu-setup ./all.sh sudo ./gradlew distDocke then install couchdb sudo ansible-playbook -i environments/local setup.yml sudo ansible-playbook prereq.yml sudo ansible-playbook initdb.yml sudo ansible-playbook wipe.yml sudo ansible-playbook openwhisk.yml Docker ps  ansible-playbook -i environments/local postdeploy.yml wsk property set --auth `cat ansible/files/auth.guest wsk property set --apihost 172.17.0.1 wsk -i property get  Then I create hello.js: /** * Hello world as an OpenWhisk action. */ function main(params) { var name = params.name || 'World'; return {payload: 'Hello, ' + name + '!'}; } However, wsk -i action create hello hello.js  Thank for your help -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
