2021-01-14 15:37:51 UTC - mhamann: it is not compatible https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1610638671000100?thread_ts=1606873590.375100&cid=C3TPCAQG1 ---- 2021-01-14 18:56:39 UTC - Ben Carver: It seems I cannot allocate more than ~512MB to a given action. I can see that we're supposed to be able to change this, but so far I haven't been able to do this successfully. I have changed the `jvmHeapMB` value for the controller and invoker in the Helm chart, but ofc this isn't the action memory limit... https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1610650599000300?thread_ts=1610565863.491300&cid=C3TPCAQG1 ---- 2021-01-14 18:58:02 UTC - Ben Carver: Can I modify the `values.yaml` in the `helm/openwhisk` directory of the `openwhisk-deploy-kube` GitHubRepo like this: ``` env: - name: "CONFIG_whisk_memory_max" value: 1024m ``` Just add that to `controller` and `invoker` sections? https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1610650682000500?thread_ts=1610565863.491300&cid=C3TPCAQG1 ---- 2021-01-14 19:01:51 UTC - Ben Carver: Well, I tried this and it didn't seem to work.
`requirement failed: memory 1024 MB exceeds allowed threshold of 536870912 B (code Ct7YWYjJqGuKIxbgot2DVjnQUUnJqbfp)` https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1610650911000700?thread_ts=1610565863.491300&cid=C3TPCAQG1 ---- 2021-01-14 19:20:58 UTC - Michele Sciabarra: I had similar issues with java generally you need -m 256 when deploying https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1610652058002200 ----