chore(deps): bump openeverest core to v2.0.0-dev.2 - #14
Open
recharte wants to merge 1 commit into
Open
Conversation
The pin was v2.0.0-dev.1.0.20260721150452-3ea180918896 (2026-07-21), which predates the PITR/DataSource restructuring in api/backup/v1alpha1 and api/core/v1alpha1 (DataSourcePITR/PITRType became DataSourcePointInTime/RecoveryTarget, StreamSource and InstanceBackupStoragePITRStatus were added), the rename of Provider.spec.secrets[].openAPIV3Schema to .parametersSchema along with the new Provider.spec.configMaps and .release fields, and the provider-runtime changes in controller/common.go, controller/backup_validation.go, the new controller/config_map_validation.go, reconciler/provider.go and reconciler/restore.go. Until it is rebuilt against v2.0.0-dev.2 this provider does not reconcile against current core. No source changes were needed: this provider declares no secrets, does not implement BackupProvider, and its call sites into provider-runtime are unaffected. make generate reproduced config/rbac and the chart manifests byte for byte. The remaining go.mod movement (go 1.26.2 to 1.26.3, k8s.io/* 0.36.0 to 0.36.3, controller-runtime 0.24.0 to 0.24.1, kin-openapi 0.138.0 to 0.145.0) is MVS following core's own requirements. Signed-off-by: Diogo Recharte <diogo.recharte@solanica.io>
recharte
marked this pull request as ready for review
August 14, 2026 08:41
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.
What
Bumps
github.com/openeverest/openeverest/v2fromv2.0.0-dev.1.0.20260721150452-3ea180918896(2026-07-21) to the tagged releasev2.0.0-dev.2(c9002768).go.mod/go.sumonly. No source changes were required.Why
The old pin is roughly three weeks of core development behind, and predates several API changes that reshape what a provider is compiled against:
api/backup/v1alpha1/restore_types.go,DataSourcePITR/PITRTypebecameDataSourcePointInTime/RecoveryTarget, and a newStreamSourcetype identifies the backup stream to recover from.api/core/v1alpha1/instance_types.gogainedInstanceBackupStoragePITRStatusandPITRState.ProviderCRD uses parameters schema openeverest#2616).Provider.spec.secrets[].openAPIV3Schemamoved down a level to.parametersSchema.openAPIV3Schema- in Go,SecretDefinition.OpenAPIV3Schema *apiextensionsv1.JSONSchemaPropsbecameSecretDefinition.ParametersSchema *common.ParametersSchema, matching how components, topologies and BackupClasses already declare schemas.SecretDefinition.Validate()andErrSecretSchemaValidationwere removed in favour of the equivalents on the sharedcommon.ParametersSchema.Provider.spec.configMapsandProvider.spec.releasewere added.controller/common.go,controller/backup_validation.go, the newcontroller/config_map_validation.go,reconciler/provider.goandreconciler/restore.go.Until it is rebuilt against
v2.0.0-dev.2, this provider does not reconcile against current core.Impact on this provider
None at the source level.
definition/provider.yamldeclares nosecrets:block (it defines a singleservercomponent of typevllmwithparametersSchema: VllmParameters), and no Go file referencesSecretDefinition,OpenAPIV3SchemaorErrSecretSchemaValidation. The schema rename is therefore inert here.BackupProvider, so the PITR / DataSource restructuring does not reach it.api/core/v1alpha1,provider-runtime/controllerandprovider-runtime/reconciler; none of the changed signatures affect its call sites.The rest of the
go.modmovement is MVS following core's own requirements, not an independent upgrade:go 1.26.2->1.26.3,k8s.io/*0.36.0->0.36.3,sigs.k8s.io/controller-runtime0.24.0->0.24.1,github.com/getkin/kin-openapi0.138.0->0.145.0,github.com/go-openapi/jsonpointerv0.23.1->v1.0.0. The latter two dropmailru/easyjson,josharian/intern,perimeterx/marshmallow,mohae/deepcopyandwoodsbury/decimal128from the indirect set.Regenerated
make generatewas re-run end to end (controller-gen RBAC, Helm RBAC sync,go generatefor the provider spec). It produced no diff:config/rbac/role.yaml,charts/provider-kubeai/generated/provider-spec.yamland the generated RBAC rules are byte-identical tomain.make verifywould pass.Verified
go build ./...- clean, no compile breakagego vet ./...- cleanmake generate- clean, no diff beyondgo.mod/go.summake lint- 0 issues (golangci-lint v1.63.4)make test- exits 0, but this repo currently contains zero_test.gofiles, so that result is vacuous and should not be read as coverage of the bumpChainsaw integration tests were not run (they need a cluster); CI covers them.
Follow-up
This PR does not cut a provider release - no chart
version/appVersionbump, no tag, no publish. A maintainer still has to cut aprovider-kubeairelease after this merges so the new core is actually shipped.