2021-01-24 13:57:23 UTC - Pavel Kravchenko: Hello @Dave Grove, when i'm using
latest openwhisk-deploy-kube and DockerContainerFactory, action containers fail
to communicate with OpenWhisk api_host.
Although setting invoker.containerFactory.kubernetes.isolateUserActions to
false resolves the issue, for KubernetesContainerFactory it doesn't help in
case of DockerContainerFactory.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1611496643032700
----
2021-01-24 16:37:35 UTC - Ben Carver: I am deploying a Java function via a JAR
and a custom Docker image created as an extension of the base Java image.
My Java program calls System.loadLibrary(...), but has an error:
`java.lang.UnsatisfiedLinkError: no ndbclient in java.library.path`
If I run my Docker image via `docker run -it java8action /bin/bash` and create
a dummy Java program and run it within the Docker image, it works:
```public class Test {
public static void main(String[] args) {
System.loadLibrary("ndbclient");
}
}```
The `java.library.path` is the same for both my JAR and the dummy program (I
print it). Any ideas why it wouldn't work in the JAR as an OpenWhisk function?
I've tried searching on Google for assistance but haven't found anything, so I
am wondering if it could be related to OpenWhisk itself.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1611506255034800?thread_ts=1611506255.034800&cid=C3TPCAQG1
----
2021-01-24 19:27:57 UTC - Rodric Rabbah: More likely this Is related to the
class loader on the Java runtime proxy. I don’t know off hand but that’s where
I’d look.
https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1611516477035900?thread_ts=1611506255.034800&cid=C3TPCAQG1
----