Release core v0.0.23, bundles v0.0.36, and postgres v0.5.12#542
Merged
PhilippMatthes merged 36 commits intoreleasefrom Feb 24, 2026
Merged
Release core v0.0.23, bundles v0.0.36, and postgres v0.5.12#542PhilippMatthes merged 36 commits intoreleasefrom
PhilippMatthes merged 36 commits intoreleasefrom
Conversation
The postgres exporter image is vulnerable. Since we don't use the postgres metrics anymore and plan to get rid of postgres entirely I just removed the exporter from the postgres chart. Additionally I bumped the chart to v0.5.10.
Additionally, this PR adds a more robust way of parsing whether the vm is a hana vm or general purpose.
Expose individually failed pipeline steps via the error message of the pipeline status condition.
…tor digest to 8f1e688 (#534)
We refactored our pipelines to have hana bin packing and general purpose load balancing pipelines. The e2e test is still using the old pipeline.
We removed the prometheus postgres exporter from the postgres chart. I forgot to remove the reference to the exporter values in the vpa template.
Change summary: - Expose Validate() of filters, weighers, and detectors as admission webhook - Pipelines will be checked upon admission if they are semantically correct - All scheduling domains made compatible (nova, manila, pods, machines, cinder) - Add webhook resource and certificate to core library - Enable certmanager in scheduling part of bundles and add to Tiltfile --------- Co-authored-by: Markus Wieland <44964229+SoWieMarkus@users.noreply.github.com>
Before we used [runtime.Rawextension](https://github.com/cobaltcore-dev/cortex/blob/e6f7d6f38c7e384fd62b80cd8a71261385afcdb2/api/v1alpha1/pipeline_types.go#L18) to load nested json into our [scheduler steps](https://github.com/cobaltcore-dev/cortex/blob/e6f7d6f38c7e384fd62b80cd8a71261385afcdb2/internal/scheduling/lib/filter_weigher_pipeline_step.go#L48), where the json is parsed into the [schema expected by the scheduler step](https://github.com/cobaltcore-dev/cortex/blob/e6f7d6f38c7e384fd62b80cd8a71261385afcdb2/internal/scheduling/nova/plugins/filters/filter_external_customer.go#L19) and then [validated](https://github.com/cobaltcore-dev/cortex/blob/e6f7d6f38c7e384fd62b80cd8a71261385afcdb2/internal/scheduling/nova/plugins/filters/filter_external_customer.go#L23). The goal of this change to spec this out more strictly. Instead of generic json substructs (runtime.Rawextension) the goal is to type the parameters strictly.
mblos
approved these changes
Feb 24, 2026
SoWieMarkus
approved these changes
Feb 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Change summary