-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
[SDK Stability] Add plugin-specific scaffolding test interface to decide if a plugin version should be updated or not #6738
Comments
@itroyano Thanks for raising the issue. Some info on how this is done today: When a new plugin is released (for ex. go/) and we would like to pull that into SDK, the developer:
With this change if there is any issue during scaffolding the tests do not pass, and CI errors. There is no automation here though, but we do catch scaffolding issues before merging anything. This works well currently with Helm and Go plugins. But with ansible (recently moved out external plugin), generation of testdata gets a bit complicated since we scaffold the templates in the external repository: https://github.com/operator-framework/ansible-operator-plugins/blob/4e8c78d21b6017ab0a280e3d274d97edf50b8fc4/hack/generate/samples/ansible/generate.go#L107. The scaffolded operator is tested in the plugin repository for any plugin update (https://github.com/operator-framework/ansible-operator-plugins/blob/main/test/e2e/ansible/suite_test.go) before updating it in SDK. Having improvements in testing external scaffolds would be helpful, however to do so we need to discuss on how we would like to split tests between the external plugin and SDK repos. |
Issues go stale after 90d of inactivity. Mark the issue as fresh by commenting If this issue is safe to close now please do so with /lifecycle stale |
Stale issues rot after 30d of inactivity. Mark the issue as fresh by commenting If this issue is safe to close now please do so with /lifecycle rotten |
Rotten issues close after 30d of inactivity. Reopen the issue by commenting /close |
@openshift-bot: Closing this issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
Feature Request
Describe the problem you need a feature to resolve.
Currently a plugin can fail on basic scaffolding
operator-sdk init --plugins=<plugin>
returning 1 and/or creating no files, or fail partially creating an incomplete operator project which doesn't meet that specific plugin's requirements.Describe the solution you'd like.
Add a mechanism in CI (e.g. on pull request) to test any current or future plugin for
If a plugin passes both criteria - update its version in go.mod and continue to test other plugins and components.
otherwise reject the plugin version, keep the existing one, and continue to test other plugins and components.
Optionally - bot creates an issue in the repo of the plugin, so maintainers can take a look.
The text was updated successfully, but these errors were encountered: