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

✨ Refactor rukpak convert (now with testing!) #1893

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

perdasilva
Copy link
Contributor

@perdasilva perdasilva commented Apr 2, 2025

Description

(Note: needs #1899 to clear verify check)

The Convert function in the rukpak/convert package is very simplistic, hard to extend and lacking in testing. This PR adds a bundle rendering framework composed:

  • ResourceGenrator: a function that takes a bundle and produces one or more kubernetes resources
  • ResourceMutator: a function that modifies a kubernetes resource
  • BundleRenderer: a struct that orchestrates generators and mutators to produce the rendered bundle resources

ResourceGenerators added:

  • BundleDeploymentGenerator: produces appsv1.Deployments from the bundle CSV
  • BundlePermissionsGenerator: produces Roles and RoleBindings from the permissions in the CSV
  • BundleClusterPermissionsGenerator: produces ClusterRoles and ClusterRoleBindings from the clusterPermissions in the CSV
  • BundleServiceAccountGenerator: produces corev1.ServiceAccount resources from the permissions and clusterPermissions in the CSV
  • BundleCRDGenerator: produces CRDs based on the bundle CRDs
  • BundleResourceGenerator: produces the resources included in the bundle that are not the CSV

No mutators are needed to reproduce the Convert function. These will be important for the webhook feature.

Reviewer Checklist

  • API Go Documentation
  • Tests: Unit Tests (and E2E Tests, if appropriate)
  • Comprehensive Commit Messages
  • Links to related GitHub Issue(s)

@openshift-ci openshift-ci bot added the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Apr 2, 2025
Copy link

netlify bot commented Apr 2, 2025

Deploy Preview for olmv1 ready!

Name Link
🔨 Latest commit 7b25a77
🔍 Latest deploy log https://app.netlify.com/sites/olmv1/deploys/67eff7dcadf97b0008927257
😎 Deploy Preview https://deploy-preview-1893--olmv1.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Template: corev1.PodTemplateSpec{
ObjectMeta: metav1.ObjectMeta{
Annotations: map[string]string{
"csv": "annotation",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I always have to refresh my memory on this question: CSV annotations are copied into the pod annotations, but not the deployment annotations? That may very well be the case, it's just that it never obvious if there is anything that motivates this.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I had the same questions in my mind. This is probably a game of telephone, but I just wanted to make sure we had what we currently have in the convert function. I don't know the motivation behind this =S

@perdasilva perdasilva force-pushed the add-render-framework branch 2 times, most recently from 688bd22 to 7aaadf9 Compare April 3, 2025 13:12
@perdasilva perdasilva marked this pull request as ready for review April 3, 2025 13:14
@perdasilva perdasilva requested a review from a team as a code owner April 3, 2025 13:14
@perdasilva perdasilva changed the title [WIP] ✨ add render package [WIP] ✨ Add rukpak/convert/render package Apr 3, 2025
@perdasilva perdasilva changed the title [WIP] ✨ Add rukpak/convert/render package ✨ Add rukpak/convert/render package Apr 3, 2025
@openshift-ci openshift-ci bot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Apr 3, 2025
Copy link

codecov bot commented Apr 3, 2025

Codecov Report

Attention: Patch coverage is 95.91837% with 14 lines in your changes missing coverage. Please review.

Project coverage is 69.90%. Comparing base (115a122) to head (7b25a77).
Report is 1 commits behind head on main.

Files with missing lines Patch % Lines
...nal/operator-controller/rukpak/convert/generate.go 95.77% 4 Missing and 2 partials ⚠️
...ernal/operator-controller/rukpak/convert/render.go 86.04% 4 Missing and 2 partials ⚠️
...ernal/operator-controller/rukpak/convert/mutate.go 95.00% 2 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main    #1893      +/-   ##
==========================================
+ Coverage   69.21%   69.90%   +0.68%     
==========================================
  Files          67       71       +4     
  Lines        5302     5443     +141     
==========================================
+ Hits         3670     3805     +135     
- Misses       1399     1404       +5     
- Partials      233      234       +1     
Flag Coverage Δ
e2e 50.49% <61.22%> (-0.01%) ⬇️
unit 58.09% <95.91%> (+1.05%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@perdasilva perdasilva force-pushed the add-render-framework branch from 7aaadf9 to 0589b6c Compare April 4, 2025 10:08
@perdasilva perdasilva changed the title ✨ Add rukpak/convert/render package ✨ Refactor rukpak convert into a renderer (with testing!) Apr 4, 2025
@perdasilva perdasilva changed the title ✨ Refactor rukpak convert into a renderer (with testing!) ✨ Refactor rukpak convert (now with testing!) Apr 4, 2025
Per Goncalves da Silva added 2 commits April 4, 2025 16:53
Signed-off-by: Per Goncalves da Silva <[email protected]>
Signed-off-by: Per Goncalves da Silva <[email protected]>
@perdasilva perdasilva force-pushed the add-render-framework branch 2 times, most recently from 0a72518 to 3ac6014 Compare April 4, 2025 15:10
Per Goncalves da Silva added 2 commits April 4, 2025 17:14
Signed-off-by: Per Goncalves da Silva <[email protected]>
@perdasilva perdasilva force-pushed the add-render-framework branch from 3ac6014 to 7b25a77 Compare April 4, 2025 15:16
@openshift-merge-robot
Copy link

PR needs rebase.

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.

@openshift-merge-robot openshift-merge-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Apr 6, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants