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
   
![image](https://github.com/apache/openwhisk/assets/85051611/7eed0cd2-54eb-46e2-bc01-0e854b164f02)
   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
   
![image](https://github.com/apache/openwhisk/assets/85051611/a55799ae-393f-45ef-b3b6-d27babfd9920)
   
   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
   
![image](https://github.com/apache/openwhisk/assets/85051611/bc612b68-bbad-4e55-9514-7b204b52fcca)
   
   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]

Reply via email to