Open GeorgeS2019 opened 4 months ago
To modify the OpenWhisk configuration to use Podman instead of Docker, you'll need to adjust the container runtime settings. Here are the detailed steps:
Install Podman:
Update OpenWhisk Configuration:
application.conf
file in your OpenWhisk deployment. This file is typically found in the whisk
directory.whisk {
containerFactory {
impl = "whisk.core.containerpool.docker.DockerContainerFactory"
docker {
runCmd = "podman run"
inspectCmd = "podman inspect"
rmCmd = "podman rm"
psCmd = "podman ps"
}
}
}
Restart OpenWhisk:
Verify the Configuration:
@GeorgeS2019 I have a PR if you want to take a look at it.