Currently, the Invoker component configuration in the application.conf has the following configuration for container proxy :
container-proxy {
timeouts {
# The "unusedTimeout" in the ContainerProxy,
#aka 'How long should a container sit idle until we kill it?'
idle-container = 10 minutes
pause-grace = 50 milliseconds
}
I installed openwhisk on kubernetes via Helm.
How can I configure the idle-container in the values.yaml or cluster.yaml? I tried the following method in values.yaml and cluster.yaml but does not work:
whisk:
containerProxy:
timeouts:
idleContainer: "3minutes"