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

fix: Support referencing metadata fields in RGD. #377 #378

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions examples/test-metadata.yaml
Copy link
Member

Choose a reason for hiding this comment

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

Are you willing to keep this file in your PR? if yes, can we move it somewhere under examples/kuberetes/*?

Copy link
Author

Choose a reason for hiding this comment

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

Yes, i will update it.

Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
apiVersion: kro.run/v1alpha1
kind: ResourceGraphDefinition
metadata:
name: using-metadata
spec:
schema:
apiVersion: v1alpha1
kind: UsingMetadata
spec:
data:
foo: string
bar: integer
status:
created: ${configmap.metadata.creationTimestamp}
resources:
- id: configmap
template:
apiVersion: v1
kind: ConfigMap
metadata:
name: ${instance.metadata.name + "-cm"}
data:
foo: ${schema.spec.data.foo}
bar: ${string(schema.spec.data.bar)}
14 changes: 14 additions & 0 deletions pkg/cel/environment.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,16 @@ func WithCustomDeclarations(declarations []cel.EnvOption) EnvOption {
}
}

// WithMetadataSupport adds support for metadata field access in CEL expressions
func WithMetadataSupport() EnvOption {
return func(opts *envOptions) {
// Add metadata type declarations
opts.customDeclarations = append(opts.customDeclarations,
cel.Variable("metadata", cel.AnyType),
)
}
}

// DefaultEnvironment returns the default CEL environment.
func DefaultEnvironment(options ...EnvOption) (*cel.Env, error) {
opts := &envOptions{}
Expand All @@ -57,10 +67,14 @@ func DefaultEnvironment(options ...EnvOption) (*cel.Env, error) {
// default stdlibs
ext.Lists(),
ext.Strings(),
// Always enable metadata support by default
cel.Variable("metadata", cel.AnyType),
}

for _, name := range opts.resourceIDs {
declarations = append(declarations, cel.Variable(name, cel.AnyType))
}

declarations = append(declarations, opts.customDeclarations...)
return cel.NewEnv(declarations...)
}
12 changes: 11 additions & 1 deletion pkg/graph/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -292,14 +292,24 @@ func (b *Builder) buildRGResource(rgResource *v1alpha1.Resource, namespacedResou
return nil, fmt.Errorf("failed, CEL expressions are not supported for CRDs, resource %s", rgResource.ID)
}
} else {

// 4. Emulate the resource, this is later used to verify the validity of the
// CEL expressions.
emulatedResource, err = b.resourceEmulator.GenerateDummyCR(gvk, resourceSchema)
if err != nil {
return nil, fmt.Errorf("failed to generate dummy CR for resource %s: %w", rgResource.ID, err)
}

// Add metadata fields to emulated resource
if emulatedResource.Object["metadata"] == nil {
emulatedResource.Object["metadata"] = map[string]interface{}{
"name": "dummy-name",
"creationTimestamp": "2024-01-01T00:00:00Z",
"namespace": "default",
"labels": map[string]interface{}{},
"annotations": map[string]interface{}{},
}
}
Comment on lines +303 to +311
Copy link
Member

Choose a reason for hiding this comment

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

I believe that we already set fake metadata on emulated resources here https://github.com/kro-run/kro/blob/main/pkg/graph/emulator/emulator.go#L70-L74

Copy link
Author

Choose a reason for hiding this comment

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

Thank you for deep diving,

I believe it helps in future development in the project.

If it is really not required then i welcome to notify me.


// 5. Extract CEL fieldDescriptors from the schema.
fieldDescriptors, err := parser.ParseResource(resourceObject, resourceSchema)
if err != nil {
Expand Down
10 changes: 9 additions & 1 deletion pkg/runtime/runtime.go
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ func (rt *ResourceGraphDefinitionRuntime) evaluateDynamicVariables() error {
// and are resolved after all the dependencies are resolved.

resolvedResources := maps.Keys(rt.resolvedResources)
resolvedResources = append(resolvedResources, "schema")
resolvedResources = append(resolvedResources, "schema", "metadata")
env, err := krocel.DefaultEnvironment(krocel.WithResourceIDs(resolvedResources))
if err != nil {
return err
Expand Down Expand Up @@ -376,6 +376,14 @@ func (rt *ResourceGraphDefinitionRuntime) evaluateDynamicVariables() error {
}

evalContext["schema"] = rt.instance.Unstructured().Object

// Add metadata context for both instance and resources
evalContext["metadata"] = rt.instance.Unstructured().Object["metadata"]
for resourceID, resource := range rt.resolvedResources {
if resource.Object["metadata"] != nil {
evalContext[resourceID+".metadata"] = resource.Object["metadata"]
}
}

value, err := evaluateExpression(env, evalContext, variable.Expression)
if err != nil {
Expand Down