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

Conversation

SanjayUG
Copy link

Hi developer,

This contribution fixes the #377 issue,

Support metadata field access in RGD CEL expressions
Adds support for referencing metadata fields in Resource Graph Definition (RGD) CEL expressions. Users can now access:

  • Instance metadata via ${instance.metadata.*}
  • Resource metadata via ${resourceId.metadata.*}
  • Standard K8s metadata fields (name, namespace, creationTimestamp, etc.)

@SanjayUG SanjayUG changed the title feat: Add metadata field access support in RGD CEL expressions fix: Support referencing metadata fields in RGD. #377 Mar 11, 2025
Copy link
Member

@a-hilaly a-hilaly left a comment

Choose a reason for hiding this comment

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

Hey @SanjayUG, thank you for your PR! Suggestion for this PR: can you intially address the bug for instance statuses first? as mentioned here #377 (comment)

We need to agree whether renaming schema to instance is the right call before starting the implementation.

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.

Comment on lines +303 to +311
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{}{},
}
}
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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants