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

DRAFT: Add OCI controller implemented with oracle API code. #2526

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
3 changes: 3 additions & 0 deletions skipper.env
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,9 @@ DAY2_PROVISIONING_CIDR6
DAY2_NETWORK_IF
DAY2_SECONDARY_NETWORK_IF
OCI_COMPARTMENT
OCI_COMPUTE_SHAPE
OCI_CONTROLLER_SHAPE
OCI_INFRASTRUCTURE_ZIP_FILE
OCI_USER
OCI_PRIVATE_KEY_PATH
OCI_PUBLIC_KEY_FINGERPRINT
Expand Down
2 changes: 2 additions & 0 deletions src/assisted_test_infra/test_infra/controllers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from .node_controllers.node import Node
from .node_controllers.nutanix_controller import NutanixController
from .node_controllers.oci_controller import OciController
from .node_controllers.oci_api_controller import OciApiController
from .node_controllers.terraform_controller import TerraformController
from .node_controllers.vsphere_controller import VSphereController
from .proxy_controller.proxy_controller import ProxyController
Expand All @@ -25,6 +26,7 @@
"TerraformController",
"LibvirtController",
"OciController",
"OciApiController",
"VSphereController",
"NutanixController",
]
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from .node import Node
from .node_controller import NodeController
from .oci_controller import OciController
from .oci_api_controller import OciApiController
from .terraform_controller import TerraformController
from .vsphere_controller import VSphereController
from .zvm_controller import ZVMController
Expand All @@ -15,5 +16,6 @@
"Node",
"LibvirtController",
"OciController",
"OciApiController",
"ZVMController",
]
Loading