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

feat #388: Add support for paravirtualized launch volume attachment #395

Merged
merged 13 commits into from
Feb 20, 2025

Conversation

MayankKakani
Copy link
Member

feat Add support for paravirtualized launch volume attachment
What this PR does / why we need it:
Recently support was added for configuring paravirtualized launch volume attachments at instance creation with go sdk v65.75.1 onwards, added the support for attaching paravirtualized volume at instance creation via cluster api provider.

Which issue(s) this PR fixes (optional, in fixes #<issue number>(, fixes #<issue_number>, ...) format, will close the issue(s) when PR gets merged): #388
Fixes #
Updated OCI Go sdk version to v65.81.1
Updated tilt-helper docker manifest go version to 1.21.8
added support for paravirtualized volumes

Signed-off-by: Mayank Kakani [email protected]

1.updated tilt image golang version to 1.21.8
2.added bash to kustomize-sub.sh call

Signed-off-by: Mayank Kakani <[email protected]>
Added LaunchParavirtualizedVolumeAttachment types to v1
added LaunchParavirtualizedVolumeAttachment type
Added support for getParavirtualizedVolumeAttachment
added launchParavirtualizedVolumeAttachment defination
added launchParavirtualizedVolumeAttachment definations
Updated OCI go sdk version to  v65.81.1 to support paravirtualized volume
Updated OCI SDK version
added test for paravirtualized volumes
Copy link

Thank you for your pull request and welcome to our community! To contribute, please sign the Oracle Contributor Agreement (OCA).
The following contributors of this PR have not signed the OCA:

To sign the OCA, please create an Oracle account and sign the OCA in Oracle's Contributor Agreement Application.

When signing the OCA, please provide your GitHub username. After signing the OCA and getting an OCA approval from Oracle, this PR will be automatically updated.

If you are an Oracle employee, please make sure that you are a member of the main Oracle GitHub organization, and your membership in this organization is public.

@oracle-contributor-agreement oracle-contributor-agreement bot added the OCA Required At least one contributor does not have an approved Oracle Contributor Agreement. label Jan 16, 2025
@joekr
Copy link
Member

joekr commented Jan 22, 2025

I'm currently running the e2e tests on this PR. Do you mind outputting the unit test output like we do for the other landed PRs?

@joekr
Copy link
Member

joekr commented Jan 23, 2025

I've fun the e2e tests

Ran 7 of 28 Specs in 2552.156 seconds
SUCCESS! -- 7 Passed | 0 Failed | 0 Pending | 21 Skipped

We will need the following still

  • show unit tests passing
  • Contributor Agreement needs to be signed

@joekr joekr added the enhancement New feature or request label Jan 23, 2025
updated message "Unknown attachment type not supported"
updated name - "check all params together, with paravirtualized volume support"
Fixed paravirtualized volume support unit test case
@oracle-contributor-agreement oracle-contributor-agreement bot added OCA Verified All contributors have signed the Oracle Contributor Agreement. and removed OCA Required At least one contributor does not have an approved Oracle Contributor Agreement. labels Feb 17, 2025
@MayankKakani
Copy link
Member Author

Unit test case results
GOBIN=/home/ubuntu/oci/cluster-api-provider-oci/hack/tools/bin ./scripts/go_install.sh sigs.k8s.io/controller-runtime/tools/setup-envtest setup-envtest v0.0.0-20230131074648-f5014c077fc3
kube-builder assets: /home/ubuntu/.local/share/kubebuilder-envtest/k8s/1.24.2-linux-amd64
KUBEBUILDER_ASSETS="/home/ubuntu/.local/share/kubebuilder-envtest/k8s/1.24.2-linux-amd64" go test -coverprofile=coverage.out ./...
github.com/oracle/cluster-api-provider-oci coverage: 0.0% of statements
ok github.com/oracle/cluster-api-provider-oci/api/v1beta1 40.770s coverage: 23.4% of statements
ok github.com/oracle/cluster-api-provider-oci/api/v1beta2 0.031s coverage: 14.6% of statements
github.com/oracle/cluster-api-provider-oci/cloud/config coverage: 0.0% of statements
github.com/oracle/cluster-api-provider-oci/cloud/metrics coverage: 0.0% of statements
ok github.com/oracle/cluster-api-provider-oci/cloud/ociutil 0.004s coverage: 15.9% of statements
ok github.com/oracle/cluster-api-provider-oci/cloud/scope 21.478s coverage: 76.1% of statements
github.com/oracle/cluster-api-provider-oci/cloud/scope/mocks coverage: 0.0% of statements
github.com/oracle/cluster-api-provider-oci/cloud/services/base coverage: 0.0% of statements
github.com/oracle/cluster-api-provider-oci/cloud/services/base/mock_base coverage: 0.0% of statements
? github.com/oracle/cluster-api-provider-oci/cloud/services/compute [no test files]
github.com/oracle/cluster-api-provider-oci/cloud/services/compute/mock_compute coverage: 0.0% of statements
? github.com/oracle/cluster-api-provider-oci/cloud/services/computemanagement [no test files]
github.com/oracle/cluster-api-provider-oci/cloud/services/computemanagement/mock_computemanagement coverage: 0.0% of statements
? github.com/oracle/cluster-api-provider-oci/cloud/services/containerengine [no test files]
github.com/oracle/cluster-api-provider-oci/cloud/services/containerengine/mock_containerengine coverage: 0.0% of statements
? github.com/oracle/cluster-api-provider-oci/cloud/services/identity [no test files]
github.com/oracle/cluster-api-provider-oci/cloud/services/identity/mock_identity coverage: 0.0% of statements
? github.com/oracle/cluster-api-provider-oci/cloud/services/loadbalancer [no test files]
github.com/oracle/cluster-api-provider-oci/cloud/services/loadbalancer/mock_lb coverage: 0.0% of statements
? github.com/oracle/cluster-api-provider-oci/cloud/services/networkloadbalancer [no test files]
github.com/oracle/cluster-api-provider-oci/cloud/services/networkloadbalancer/mock_nlb coverage: 0.0% of statements
? github.com/oracle/cluster-api-provider-oci/cloud/services/vcn [no test files]
github.com/oracle/cluster-api-provider-oci/cloud/services/vcn/mock_vcn coverage: 0.0% of statements
? github.com/oracle/cluster-api-provider-oci/cloud/services/workrequests [no test files]
github.com/oracle/cluster-api-provider-oci/cloud/services/workrequests/mock_workrequests coverage: 0.0% of statements
ok github.com/oracle/cluster-api-provider-oci/cloud/util 0.347s coverage: 61.1% of statements
ok github.com/oracle/cluster-api-provider-oci/controllers 2.308s coverage: 59.2% of statements
ok github.com/oracle/cluster-api-provider-oci/exp/api/v1beta1 12.864s coverage: 15.3% of statements
ok github.com/oracle/cluster-api-provider-oci/exp/api/v1beta2 0.025s coverage: 4.8% of statements
ok github.com/oracle/cluster-api-provider-oci/exp/controllers 0.992s coverage: 56.3% of statements
github.com/oracle/cluster-api-provider-oci/feature coverage: 0.0% of statements
? github.com/oracle/cluster-api-provider-oci/version [no test files]
go tool cover -func=coverage.out -o coverage.txt
go tool cover -html=coverage.out -o coverage.html

@MayankKakani MayankKakani requested a review from joekr February 17, 2025 11:19
@joekr joekr merged commit ef5b1a3 into oracle:main Feb 20, 2025
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request OCA Verified All contributors have signed the Oracle Contributor Agreement.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants