-
Notifications
You must be signed in to change notification settings - Fork 167
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
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this 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.
examples/test-metadata.yaml
Outdated
There was a problem hiding this comment.
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/*
?
There was a problem hiding this comment.
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.
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{}{}, | ||
} | ||
} |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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.
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: