Skip to content

Commit

Permalink
added RelatedResourceVersion to KubernetesObject
Browse files Browse the repository at this point in the history
  • Loading branch information
kooomix committed Nov 23, 2023
1 parent 6f33890 commit 9225ab2
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions armotypes/kubernetes_objects.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ type KubernetesObject struct {
OwnerReferenceKind string `json:"ownerReferenceKind"`

// related only to kubescape DRDs.
RelatedName string `json:"relatedName"`
RelatedKind string `json:"relatedKind"`
RelatedAPIGroup string `json:"relatedAPIGroup"`
RelatedNamespace string `json:"relatedNamespace"`
RelatedAPIVersion string `json:"relatedAPIVersion"`
RelatedName string `json:"relatedName"`
RelatedKind string `json:"relatedKind"`
RelatedAPIGroup string `json:"relatedAPIGroup"`
RelatedNamespace string `json:"relatedNamespace"`
RelatedAPIVersion string `json:"relatedAPIVersion"`
RelatedResourceVersion string `json:"relatedResourceVersion"`
}

0 comments on commit 9225ab2

Please sign in to comment.