From e600da46d52a301e878fc45a5765a304b5ccaecf Mon Sep 17 00:00:00 2001 From: Carl Csaposs Date: Mon, 27 May 2024 13:03:09 +0200 Subject: [PATCH] test tls-certificates-operator arm64 --- tests/integration/test_backups.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/integration/test_backups.py b/tests/integration/test_backups.py index 92889ed267..d5a473686f 100644 --- a/tests/integration/test_backups.py +++ b/tests/integration/test_backups.py @@ -32,10 +32,11 @@ FAILED_TO_INITIALIZE_STANZA_ERROR_MESSAGE = "failed to initialize stanza, check your S3 settings" S3_INTEGRATOR_APP_NAME = "s3-integrator" if juju_major_version < 3: - if architecture.architecture == "arm64": - pytest.skip(allow_module_level=True) tls_certificates_app_name = "tls-certificates-operator" - tls_channel = "legacy/stable" + if architecture.architecture == "arm64": + tls_channel = "legacy/edge" + else: + tls_channel = "legacy/stable" tls_config = {"generate-self-signed-certificates": "true", "ca-common-name": "Test CA"} else: tls_certificates_app_name = "self-signed-certificates"