-
Notifications
You must be signed in to change notification settings - Fork 77
SPLAT-2651: Added support to mange kube-cloud-config for vSphere in openshift-config-managed #442
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,7 +7,7 @@ import ( | |
| configv1 "github.com/openshift/api/config/v1" | ||
| "k8s.io/utils/net" | ||
|
|
||
| ccmConfig "github.com/openshift/cluster-cloud-controller-manager-operator/pkg/cloud/vsphere/vsphere_cloud_config" | ||
| ccmConfig "github.com/openshift/library-go/pkg/cloudprovider/vsphere" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Check if the vSphere cloudprovider package exists in the upstream library-go
# This verifies if the fork changes have been merged
echo "Checking if the vsphere cloudprovider package exists in upstream library-go..."
curl -s -o /dev/null -w "%{http_code}" "https://api.github.com/repos/openshift/library-go/contents/pkg/cloudprovider/vsphere"
echo ""
# Also check for any open PRs from vr4manta to openshift/library-go
echo "Checking for related PRs..."
gh pr list --repo openshift/library-go --author vr4manta --state all --limit 5Repository: openshift/cluster-cloud-controller-manager-operator Length of output: 419 Resolve the temporary library-go fork dependency before merge. The import path 🤖 Prompt for AI Agents |
||
| "github.com/openshift/library-go/pkg/operator/configobserver/featuregates" | ||
| ) | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove temporary replace directive before merge.
The comment explicitly states this is temporary for testing. This replace directive pointing to a personal fork (
github.com/vr4manta/library-go) must be removed before merging to main. The upstreamopenshift/library-goshould contain the required vSphere cloudprovider package.Consider tracking this with a TODO or ensuring the dependent library-go PR is merged first.
🤖 Prompt for AI Agents