--
You received this message because you are subscribed to the Google Groups "AWX Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email to awx-project...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/awx-project/d30a66b7-c14d-4a7a-94d1-d7fe60b6af7bn%40googlegroups.com.
You can create backup & restore custom resources from any operating system that you can install the kubectl or oc tools on.It sounds like there may have been an error with the backup. You can check for errors in the `awx-operator` pod's logs. It might also be useful to look at the yaml for that backup object to see if there are any errors on it, or useful statuses.`kubectl get awxbackup awxbackup-2021-07-27 -o yaml`Thanks,Christian
Once I manually change awx-operator deployment to use quay.io/ansible/awx-operator:devel
I have PVC awx-backup-claim
created. I have pod awxbackup-db-management
created and mounted this PV awx-backup-claim
, but folder backups
inside pod awxbackup-db-management
is empty, and no backups created.
I also created a new backup with:
---
apiVersion: awx.ansible.com/v1beta1
kind: AWXBackup
metadata:
name: awxbackup2
namespace: default
spec:
deployment_name: awx
But still no backup created.
And this is the status of this awxbackup2
status: │
│ conditions: │
│ - lastTransitionTime: "2021-05-20T13:58:25Z" │
│ message: Running reconciliation │
│ reason: Running │
│ status: "False" │
│ type: Running │
│ - ansibleResult: │
│ changed: 3 │
│ completion: 2021-05-20T14:04:40.55262 │
│ failures: 1 │
│ ok: 14 │
│ skipped: 6 │
│ lastTransitionTime: "2021-05-20T14:04:40Z" │
│ message: unknown playbook failure │
│ reason: Failed │
│ status: "True" │
│ type: Failure
Where in backup Role i can see the variable :
and the variable:
But in Restoration the variable asked is database_type which fails as it is undefined.Hence restoration is failing.
Can anyone help here ?