HaoWang9909 commented on issue #5525:
URL: https://github.com/apache/openwhisk/issues/5525#issuecomment-2565051167
I resolved the issue by adding the following tasks to
ansible/roles/invoker/tasks/deploy.yml:
```yml
- name: Save invoker Docker image
command: docker save -o /tmp/invoker.tar whisk/invoker:latest
delegate_to: localhost
run_once: true
- name: Copy invoker image to all Invoker machines
copy:
src: /tmp/invoker.tar
dest: /tmp/invoker.tar
- name: Load invoker Docker image on Invoker machines
command: docker load -i /tmp/invoker.tar
```
This worked successfully, and the updated Invoker image was deployed across
all machines.
--
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]