Allow controlled customizations to internal resources

This commit is contained in:
Nikola Jokic
2026-02-17 15:49:50 +01:00
parent 9de09f56eb
commit b3b6df3d2f
9 changed files with 303 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
package v1alpha1
// ResourceMeta carries metadata common to all internal resources
type ResourceMeta struct {
Labels map[string]string `json:"labels"`
Annotations map[string]string `json:"annotations"`
}