Open SRJ9 opened 5 years ago
This is not a system problem, it is a container security context issue.
Fix:
docker/podman --cap-add audit_write ....
fix for kubernetes:
deployment/statefulset etc:
...
containers:
- name: postgresql
image: sameersbn/postgresql:latest
securityContext:
capabilities:
add: ["AUDIT_WRITE"]
....
thx help
I got this error when I run the container (any version: latest, 9:6, ...).
OS: Debian 9.6 Kernel: 4.9.0-8-amd64
/var/lib/docker is a mount point (partition of 92GB only with that)
In other server with same OS is working OK.