mirror of
https://github.com/ansible/awx-operator.git
synced 2026-05-06 13:22:50 +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
35 lines
851 B
YAML
35 lines
851 B
YAML
---
|
|
# Required: specify name of tower deployment to restore to
|
|
deployment_name: ''
|
|
kind: 'AWXRestore'
|
|
api_version: '{{ deployment_type }}.ansible.com/v1beta1'
|
|
|
|
# Required: specify a pre-created PVC (name) to restore from
|
|
backup_pvc: ''
|
|
backup_pvc_namespace: '{{ ansible_operator_meta.namespace }}'
|
|
|
|
# Required: backup name, found on the awxbackup object
|
|
backup_dir: ''
|
|
|
|
# Default cluster name
|
|
cluster_name: 'cluster.local'
|
|
|
|
# Set no_log settings on certain tasks
|
|
no_log: true
|
|
|
|
# Default resource requirements
|
|
restore_resource_requirements:
|
|
limits:
|
|
cpu: "1000m"
|
|
memory: "4096Mi"
|
|
requests:
|
|
cpu: "25m"
|
|
memory: "32Mi"
|
|
|
|
# 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
|
|
...
|