From 36edfeb236c44dee1b8bec1dfdd9d8adfcffcfcf Mon Sep 17 00:00:00 2001 From: mrichomme Date: Thu, 4 Feb 2021 18:56:12 +0100 Subject: Remove cert authent in basic_clamp Clamp can now be reached using a basic/auth The Cert is no more needed This is much simpler to deal with and integrate in CI Issue-ID: INT-1819 Signed-off-by: mrichomme Change-Id: I9325c2d37826feed6148cd509717c6788639938d --- src/onaptests/steps/loop/clamp.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/onaptests/steps/loop') diff --git a/src/onaptests/steps/loop/clamp.py b/src/onaptests/steps/loop/clamp.py index 9ae5a5f..e781bd2 100644 --- a/src/onaptests/steps/loop/clamp.py +++ b/src/onaptests/steps/loop/clamp.py @@ -29,7 +29,7 @@ class ClampStep(YamlTemplateBaseStep): super().__init__(cleanup=cleanup) self._yaml_template: dict = None self.add_step(OnboardClampStep(cleanup=cleanup)) - Clamp(cert=settings.CERT) + Clamp() self.loop_instance = None @property @@ -95,8 +95,7 @@ class ClampStep(YamlTemplateBaseStep): """Instantite a closed loopin CLAMP.""" loop = InstantiateLoop(template=loop_template, loop_name=loop_name, - operational_policies=operational_policies, - cert=settings.CERT) + operational_policies=operational_policies) return loop.instantiate_loop() def loop_counter(self, action: str) -> None: -- cgit 1.2.3-korg