2022-04-27 17:35:34 UTC - Marcin Copik: Hi! I've been using OpenWhisk on kind to run some serverless functions. Since some of my functions have hundreds of megabytes of dependencies, I'm using Docker images to supply most of the code.
Problem: I have to create all actions by pushing images to Docker Hub, as private registries don't work with kind. However, it seems that once I create an action with a given Docker image, OpenWhisk will cache the image and *never update it*. Even if I push a new image to the public registry, then it doesn't matter if I update the action, delete & create, or create a new action with the same Docker tag - OpenWhisk deployment will keep using the old version. The only way of "refreshing" the cache seems to be to delete the cluster, start again and deploy OpenWhisk once more. This takes time, unfortunately. Is there some better way of enforcing a purge of this cache? https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1651080934063019?thread_ts=1651080934.063019&cid=C3TPCAQG1 ---- 2022-04-27 22:24:03 UTC - Areej: I am trying to redeploy OW using ansible ( i need to set some parameters ) first i run this command to clean the deployment :ansible-playbook openwhisk.yml -e mode=clean. then i redeploy it with this command :ansible-playbook openwhisk.yml -e lean=true -e invoker_user_memory=3072m -e docker_image_prefix=kpavel -e docker_image_tag=rpi -e limit_invocations_per_minute=999999 -e limit_invocations_concurrent=999999 but I got this error https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1651098243613509 ---- 2022-04-27 22:24:45 UTC - Areej: https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1651098285977829?thread_ts=1651098285.977829&cid=C3TPCAQG1 ----