Drop initial code

This commit is contained in:
Danny Bessems
2026-01-15 09:58:01 +00:00
parent 227d957219
commit 1e7c9ba5cb
228 changed files with 19883 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
package provider
import (
"context"
"vanderlande.com/ittp/appstack/rig-operator/api/v1alpha1"
)
type Strategy interface {
// GenerateNodePools generates the provider-specific node pool list.
// [CHANGED] Return type is now interface{} to support both Structs and Maps
GenerateNodePools(ctx context.Context, cbp *v1alpha1.ClusterBlueprint) (interface{}, error)
// GetGlobalOverrides returns the provider-specific helm values.
GetGlobalOverrides(ctx context.Context, cbp *v1alpha1.ClusterBlueprint, credentialSecret string) (map[string]interface{}, error)
}