-
Notifications
You must be signed in to change notification settings - Fork 52
SPLAT-2167: Added dedicated host support for AWS #374
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
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,7 +8,7 @@ require ( | |
| github.com/golangci/golangci-lint v1.64.8 | ||
| github.com/jstemmer/go-junit-report v0.9.1 | ||
| github.com/onsi/ginkgo/v2 v2.27.2 | ||
| sigs.k8s.io/kustomize/kustomize/v5 v5.4.1 | ||
| sigs.k8s.io/kustomize/kustomize/v5 v5.7.1 | ||
|
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: # First, let's check the current state of the go.mod file to see the actual versions
cat hack/tools/go.mod | head -30Repository: openshift/cluster-capi-operator Length of output: 206 🌐 Web query:
💡 Result: Summary of breaking changes between kustomize v5.4.1 and v5.7.1:
Sources: Would you like links to the specific GitHub release pages or a short upgrade checklist? Citations:
🌐 Web query:
💡 Result: Summary of kustomize v5.7.1 (sigs.k8s.io/kustomize/kustomize/v5)
Source: GitHub release for kustomize v5.7.1. [1] [1] kubernetes-sigs/kustomize — Releases (kustomize/v5.7.1). Kustomize v5.5.0 removed Starlark support for KRM functions and v5.7.1 changed exec plugin argument parsing due to dropping the shlex dependency. The update path (v5.4.1 → v5.7.1) introduces breaking changes in v5.5.0 (Starlark support removal) and a behavioral change in v5.7.1 (shlex dependency drop affecting exec plugin arg parsing). Verify whether:
🤖 Prompt for AI Agents |
||
| ) | ||
|
|
||
| require ( | ||
|
|
@@ -216,7 +216,7 @@ require ( | |
| mvdan.cc/unparam v0.0.0-20240528143540-8a5130ca722f // indirect | ||
| sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect | ||
| sigs.k8s.io/kustomize/api v0.20.1 // indirect | ||
| sigs.k8s.io/kustomize/cmd/config v0.14.0 // indirect | ||
| sigs.k8s.io/kustomize/cmd/config v0.20.1 // indirect | ||
| sigs.k8s.io/kustomize/kyaml v0.20.1 // indirect | ||
| sigs.k8s.io/yaml v1.6.0 // indirect | ||
| ) | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,6 +25,7 @@ spec: | |
| - ec2:DescribeDhcpOptions | ||
| - ec2:DescribeImages | ||
| - ec2:DescribeInstances | ||
| - ec2:DescribeInstanceTypes | ||
|
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. I believe it would be nice to add this change to a new commit referencing the reason of adding it (upstream PR, jira feature, etc). this would be used to document in the future and/or in managed services to eventually update the managed IAM.
Author
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. Sure! There is a warning message that is caused by this missing. I am not 100% sure this feature introduced it, but I am happy to put into a separate commit. |
||
| - ec2:DescribeInternetGateways | ||
| - ec2:DescribeSecurityGroups | ||
| - ec2:DescribeSubnets | ||
|
|
||
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.
🧩 Analysis chain
🏁 Script executed:
# Read the full e2e/go.mod file to see the context cat e2e/go.modRepository: openshift/cluster-capi-operator
Length of output: 7048
🏁 Script executed:
Repository: openshift/cluster-capi-operator
Length of output: 29898
Add TODO comment for consistency with other temporary dependencies.
This pseudo-version should include a TODO comment documenting that it depends on an upstream PR fix, following the pattern used for other temporary dependencies in lines 5-10. The module is properly vendored, but lacks documentation explaining its temporary status.
Suggested change
+// TODO: Update to released version once upstream fix is available sigs.k8s.io/cluster-api-provider-aws/v2 v2.10.1-0.20251223195230-7aa98eaf0ba3📝 Committable suggestion
🤖 Prompt for AI Agents