From a327cc668ec3df62857ca9d97f3ccec6f78e90ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Gajdu=C5=A1ek?= Date: Thu, 25 Jul 2024 16:49:52 +0200 Subject: [PATCH] Remove promtail configuration option (#15763) (cherry picked from commit 303489b7eceeb40b05f38ac9f7e1c4d4bd6022b2) --- pytest_fixtures/core/sat_cap_factory.py | 2 -- robottelo/hosts.py | 1 - 2 files changed, 3 deletions(-) diff --git a/pytest_fixtures/core/sat_cap_factory.py b/pytest_fixtures/core/sat_cap_factory.py index 09ee588b2f..96c1683bfb 100644 --- a/pytest_fixtures/core/sat_cap_factory.py +++ b/pytest_fixtures/core/sat_cap_factory.py @@ -286,7 +286,6 @@ def get_deploy_args(request): deploy_args = { 'deploy_rhel_version': rhel_version.base_version, 'deploy_flavor': settings.flavors.default, - 'promtail_config_template_file': 'config_sat.j2', 'workflow': settings.server.deploy_workflows.os, } if hasattr(request, 'param'): @@ -317,7 +316,6 @@ def cap_ready_rhel(): deploy_args = { 'deploy_rhel_version': rhel_version.base_version, 'deploy_flavor': settings.flavors.default, - 'promtail_config_template_file': 'config_sat.j2', 'workflow': settings.capsule.deploy_workflows.os, } with Broker(**deploy_args, host_class=Capsule) as host: diff --git a/robottelo/hosts.py b/robottelo/hosts.py index 49d6e6300d..a066e92ed4 100644 --- a/robottelo/hosts.py +++ b/robottelo/hosts.py @@ -72,7 +72,6 @@ def lru_sat_ready_rhel(rhel_ver): deploy_args = { 'deploy_rhel_version': rhel_version, 'deploy_flavor': settings.flavors.default, - 'promtail_config_template_file': 'config_sat.j2', 'workflow': settings.server.deploy_workflows.os, } return Broker(**deploy_args, host_class=Satellite).checkout()