Skip to content

Commit

Permalink
taking out namespace in template creation
Browse files Browse the repository at this point in the history
  • Loading branch information
paigerube14 committed Nov 21, 2024
1 parent acbf89e commit cae628e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/krkn_lib/tests/base_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def deploy_fedtools(
name: str = "fedtools",
):
template = self.template_to_pod(name, namespace, random_label)
self.apply_template(template, namespace)
self.apply_template(template)

def deploy_fake_kraken(
self,
Expand All @@ -121,11 +121,11 @@ def deploy_fake_kraken(
template = self.template_to_pod(
"kraken-deployment", namespace, random_label, node_name
)
self.apply_template(template, namespace)
self.apply_template(template)

def deploy_job(self, name: str, namespace: str = "default"):
template = self.template_to_job(name, namespace)
self.apply_template(template, namespace)
self.apply_template(template)

def depoy_alpine(self, name: str, namespace: str = "default"):
environment = Environment(loader=FileSystemLoader("src/testdata/"))
Expand Down

0 comments on commit cae628e

Please sign in to comment.