From b00137cc3e59dff3fccb1a133bb7a44c9aaa711e Mon Sep 17 00:00:00 2001 From: Dimitri Savineau Date: Wed, 22 Mar 2023 18:17:19 -0400 Subject: [PATCH] restore: Fix enum value for backup_source The choice for backup_source are: - Backup CR - PVC This current prevents to create an AWXRestore CR with the Backup CR value from the OLM UI. Error "Unsupported value: "Backup CR": supported values: "CR", "PVC"" for field "spec.backup_source". Signed-off-by: Dimitri Savineau --- config/crd/bases/awx.ansible.com_awxrestores.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/crd/bases/awx.ansible.com_awxrestores.yaml b/config/crd/bases/awx.ansible.com_awxrestores.yaml index 87d92c88..1cad5aa9 100644 --- a/config/crd/bases/awx.ansible.com_awxrestores.yaml +++ b/config/crd/bases/awx.ansible.com_awxrestores.yaml @@ -44,7 +44,7 @@ spec: description: Backup source type: string enum: - - CR + - Backup CR - PVC deployment_name: description: Name of the restored deployment. This should be different from the original deployment name