2022-05-29 20:06:21 UTC - Areej: I am trying to deploy distributed OW on Ubuntu 20 on Openstack Cloud. I got this error :TASK [invoker : start invoker] ************************************************************************************************************************************************************************************************************************************************* Sunday 29 May 2022 19:20:25 +0000 (0:00:00.212) 0:01:26.400 ************ fatal: [invoker1]: FAILED! => {“changed”: false, “msg”: “Error pulling image whisk/invoker:latest - 404 Client Error: Not Found (\“pull access denied for whisk/invoker, repository does not exist or may require ‘docker login’: denied: requested access to the resource is denied\“)”}
Error pulling image whisk/invoker:latest - 404 Client Error: Not Found (“pull access denied for whisk/invoker, repository does not exist or may require ‘docker login’: denied: requested access to the resource is denied”) fatal: [invoker0]: FAILED! => {“changed”: false, “msg”: “Error pulling image whisk/invoker:latest - 404 Client Error for <http+docker://localhost/v1.41/images/create?tag=latest&fromImage=whisk%2Finvoker>: Not Found (\“pull access denied for whisk/invoker, repository does not exist or may require ‘docker login’: denied: requested access to the resource is denied\“)”} Error pulling image whisk/invoker:latest - 404 Client Error for http+docker ://localhost/v1.41/images/create?tag=latest&fromImage=whisk%2Finvoker: Not Found (“pull access denied for whisk/invoker, repository does not exist or may require ‘docker login’: denied: requested access to the resource is denied”) fatal: [invoker2]: FAILED! => {“changed”: false, “msg”: “Error pulling image whisk/invoker:latest - 404 Client Error: Not Found (\“pull access denied for whisk/invoker, repository does not exist or may require ‘docker login’: denied: requested access to the resource is denied\“)”} Error pulling image whisk/invoker:latest - 404 Client Error: Not Found (“pull access denied for whisk/invoker, repository does not exist or may require ‘docker login’: denied: requested access to the resource is denied”) PLAY RECAP ********************************************************************************************************************************************************************************************************************************************************************* controller0 : ok=26 changed=3 unreachable=0 failed=0 skipped=18 rescued=0 ignored=0 etcd0 : ok=0 changed=0 unreachable=0 failed=0 skipped=7 rescued=0 ignored=0 invoker0 : ok=27 changed=5 unreachable=0 failed=1 skipped=20 rescued=0 ignored=0 invoker1 : ok=27 changed=9 unreachable=0 failed=1 skipped=20 rescued=0 ignored=0 invoker2 : ok=27 changed=9 unreachable=0 failed=1 skipped=20 rescued=0 ignored=0 kafka0 : ok=10 changed=4 unreachable=0 failed=0 skipped=7 rescued=0 ignored=0 scheduler0 : ok=0 changed=0 unreachable=0 failed=0 skipped=32 rescued=0 ignored=0. my host Configuration file :; the first parameter in a host is the inventory_hostname ; used for local actions only ansible ansible_connection=local *[edge]* 172.17.0.1 ansible_host=172.17.0.1 ansible_connection=local *[controllers]* controller0 ansible_host=172.17.0.1 ansible_connection=local ; *[kafkas]* kafka0 ansible_host=172.17.0.1 ansible_connection=local *[zookeepers:children]* kafkas *[invokers]* invoker0 ansible_host=10.72.102.235 ansible_connection=ssh invoker1 ansible_host=10.72.103.102 ansible_connection=ssh invoker2 ansible_host=10.72.103.122 ansible_connection=ssh *[schedulers]* scheduler0 ansible_host=172.17.0.1 ansible_connection=local ; db group is only used if db.provider is CouchDB *[db]* 10.72.102.201 ansible_host=10.72.102.201 ansible_connection=ssh *[elasticsearch:children]* db *[redis]* 172.17.0.1 ansible_host=172.17.0.1 ansible_connection=local *[apigateway]* 172.17.0.1 ansible_host=172.17.0.1 ansible_connection=local *[etcd]* etcd0 ansible_host=172.17.0.1 ansible_connection=local https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1653854781440409 ----