mirror of
https://github.com/ansible/awx-operator.git
synced 2026-03-28 14:23:11 +00:00
* docs: simplify README.md and make index.md to refer to it * docs: change order for pages in navigation and add missing pages * docs: fix headings to improve navigation, transform notes to admonition, fix indentation, linting issues and minor issues * docs: merge docs for using images from private registries * docs: add example to integrate LDAP configuration via extra_settings_files * Apply suggestions from code review docs: apply suggested changes Co-authored-by: Don Naro <dnaro@redhat.com> * docs: update the doc site url as same as the url in https://www.ansible.com/ecosystem/ * docs: minor fixes for hpa page * docs: expand note block * docs: apply #1904 to README.md --------- Co-authored-by: Don Naro <dnaro@redhat.com>
22 lines
781 B
Markdown
22 lines
781 B
Markdown
# Security Context
|
|
|
|
It is possible to modify some `SecurityContext` proprieties of the various deployments and stateful sets if needed.
|
|
|
|
| Name | Description | Default |
|
|
| ---------------------------------- | -------------------------------------------- | ------- |
|
|
| security_context_settings | SecurityContext for Task and Web deployments | {} |
|
|
| postgres_security_context_settings | SecurityContext for PostgreSQL container | {} |
|
|
|
|
Example configuration securityContext for the Task and Web deployments:
|
|
|
|
```yaml
|
|
spec:
|
|
security_context_settings:
|
|
allowPrivilegeEscalation: false
|
|
capabilities:
|
|
drop:
|
|
- ALL
|
|
postgres_security_context_settings:
|
|
runAsNonRoot: true
|
|
```
|