Skip to content

Commit

Permalink
Add service_account_name to submission workflows
Browse files Browse the repository at this point in the history
* Fixes `make test-on-cluster`, but unsure why the service account changed

Signed-off-by: Elliot Gunton <[email protected]>
  • Loading branch information
elliotgunton committed Jan 10, 2025
1 parent 2ae275e commit f1b93b1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/submissions/test_dag_artifacts.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ def get_workflow() -> Workflow:
namespace="argo",
verify_ssl=False,
),
service_account_name="argo",
) as w:
hello_world_to_file = Container(
name="hello-world-to-file",
Expand Down
1 change: 1 addition & 0 deletions tests/submissions/test_hello_world.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ def get_workflow() -> Workflow:
namespace="argo",
verify_ssl=False,
),
service_account_name="argo",
) as w:
with Steps(name="steps"):
echo_to_param(arguments={"message": "Hello world!"})
Expand Down
1 change: 1 addition & 0 deletions tests/submissions/test_optional_input_parameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ def get_workflow() -> Workflow:
namespace="argo",
verify_ssl=False,
),
service_account_name="argo",
) as w:
with Steps(name="steps"):
print_msg(name="step-1", arguments={"message": "Hello world!"})
Expand Down

0 comments on commit f1b93b1

Please sign in to comment.