mirror of
https://github.com/ansible/awx-operator.git
synced 2026-03-28 06:13: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>
23 lines
1.4 KiB
Markdown
23 lines
1.4 KiB
Markdown
# Persisting Projects Directory
|
|
|
|
In cases which you want to persist the `/var/lib/projects` directory, there are few variables that are customizable for the `awx-operator`.
|
|
|
|
| Name | Description | Default |
|
|
| ---------------------------- | ---------------------------------------------------------------------------------------------- | ------------- |
|
|
| projects_persistence | Whether or not the /var/lib/projects directory will be persistent | false |
|
|
| projects_storage_class | Define the PersistentVolume storage class | '' |
|
|
| projects_storage_size | Define the PersistentVolume size | 8Gi |
|
|
| projects_storage_access_mode | Define the PersistentVolume access mode | ReadWriteMany |
|
|
| projects_existing_claim | Define an existing PersistentVolumeClaim to use (cannot be combined with `projects_storage_*`) | '' |
|
|
|
|
Example of customization when the `awx-operator` automatically handles the persistent volume could be:
|
|
|
|
```yaml
|
|
---
|
|
spec:
|
|
...
|
|
projects_persistence: true
|
|
projects_storage_class: rook-ceph
|
|
projects_storage_size: 20Gi
|
|
```
|