mirror of
https://github.com/ansible/awx-operator.git
synced 2026-03-26 21:33:14 +00:00
* Move label templates into `common` role So that there is single source of labels management, and labels are unified across the other roles * Introduce `additional_labels` * Fix paths for labels templates * Return `additional_labels_items` as list * Add molecule tests
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
---
|
|
# Required: specify name of tower deployment to backup from
|
|
deployment_name: ''
|
|
kind: 'AWXBackup'
|
|
api_version: '{{ deployment_type }}.ansible.com/v1beta1'
|
|
|
|
# Specify a pre-created PVC (name) to backup to
|
|
backup_pvc: ''
|
|
backup_pvc_namespace: "{{ ansible_operator_meta.namespace }}"
|
|
|
|
# Size of backup PVC if created dynamically
|
|
backup_storage_requirements: ''
|
|
|
|
# Set no_log settings on certain tasks
|
|
no_log: true
|
|
|
|
# Variable to set when you want backups to be cleaned up when the CRD object is deleted
|
|
clean_backup_on_delete: false
|
|
|
|
# Variable to signal that this role is being run as a finalizer
|
|
finalizer_run: false
|
|
|
|
# Default resource requirements
|
|
backup_resource_requirements:
|
|
limits:
|
|
cpu: "1000m"
|
|
memory: "4096Mi"
|
|
requests:
|
|
cpu: "25m"
|
|
memory: "32Mi"
|
|
# Allow additional parameters to be added to the pg_dump backup command
|
|
pg_dump_suffix: ''
|
|
|
|
# Labels defined on the resource, which should be propagated to child resources
|
|
additional_labels: []
|
|
|
|
# Maintain some of the recommended `app.kubernetes.io/*` labels on the resource (self)
|
|
set_self_labels: true
|
|
...
|