mirror of
https://github.com/ansible/awx-operator.git
synced 2026-05-06 13:22:50 +00:00
14 lines
341 B
Markdown
14 lines
341 B
Markdown
#### Redis container capabilities
|
|
|
|
Depending on your kubernetes cluster and settings you might need to grant some capabilities to the redis container so it can start. Set the `redis_capabilities` option so the capabilities are added in the deployment.
|
|
|
|
```yaml
|
|
---
|
|
spec:
|
|
...
|
|
redis_capabilities:
|
|
- CHOWN
|
|
- SETUID
|
|
- SETGID
|
|
```
|