-
Notifications
You must be signed in to change notification settings - Fork 166
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?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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)} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 commentThe 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 { | ||
|
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.