Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP/RFC] Extract generic methods from WorkerNode and Cluster classes. #175

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:
flake8 --ignore=E203,W504,W503 .
- name: Black
run: |
black -l 79 -S --check --diff .
black --check --diff .
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
/runtime
/test_results
__pycache__
1 change: 1 addition & 0 deletions copyright
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Numan Siddique [email protected]
Files: *
Copyright: (c) 2020 VMware, Inc.
(c) 2020-2023 RedHat, Inc.
(c) 2023 Canonical
License: Apache-2.0

Files: logo.png
Expand Down
1 change: 1 addition & 0 deletions ovn-fake-multinode-utils/translate_yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ class GlobalConfig:
cleanup: bool = False
run_ipv4: bool = True
run_ipv6: bool = False
cms_name: str = ''


def calculate_node_remotes(
Expand Down
Empty file added ovn-tester/cms/__init__.py
Empty file.
1 change: 1 addition & 0 deletions ovn-tester/cms/ovn_kubernetes/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .ovn_kubernetes import * # noqa
Loading