Feature/Support of Oracle Cloud Infrastructure(OCI) for KubeIP. #161
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds support for Oracle Cloud Infrastructure (OCI) to KubeIP, enabling the assignment of static public IPs to Kubernetes nodes running on OCI. This feature expands KubeIP's capabilities beyond Google Cloud and AWS, providing more flexibility for users running their Kubernetes clusters on OCI.
Changes
OCI Assigner Implementation:
ociAssigner
ininternal/address/oci.go
to handle the assignment of public IPs on OCI.OCI Network Service:
ociNetworkService
ininternal/cloud/oci_network_service.go
to interact with OCI's Virtual Network API.OCI Instance Service:
ociInstanceService
ininternal/cloud/oci_instance_service.go
to interact with OCI's Compute API.Configuration Updates:
chart/values.yaml
to include OCI-specific configuration options.cmd/main.go
.Documentation:
README.md
to include instructions for deploying KubeIP on OCI.How to Test
Setup OCI Environment:
Deploy KubeIP:
README.md
to deploy KubeIP as a DaemonSet on your OCI Kubernetes cluster.project
flag with your OCI compartment OCID and set the appropriate filters.Verify IP Assignment:
Additional Notes
Please review the changes and provide feedback. Thank you!