Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api/v1/qdrantentity_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ func (r *QdrantEntityStatusResult) SetPayloadFromGRPC(payload *structpb.Struct)
// +kubebuilder:object:root=true
// +kubebuilder:subresource:status
// +kubebuilder:resource:path=qdrantentities,singular=qdrantentity,shortName=qe
// +kubebuilder:printcolumn:name="EntityType",type=string,JSONPath=`.spec.entityType`
// +kubebuilder:printcolumn:name="Phase",type=string,JSONPath=`.status.phase`
// +kubebuilder:printcolumn:name="Age",type=date,JSONPath=`.metadata.creationTimestamp`
// +kubebuilder:selectablefield:JSONPath=`.spec.entityType`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ spec:
scope: Namespaced
versions:
- additionalPrinterColumns:
- jsonPath: .spec.entityType
name: EntityType
type: string
- jsonPath: .status.phase
name: Phase
type: string
Expand Down
3 changes: 3 additions & 0 deletions crds/qdrant.io_qdrantentities.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ spec:
scope: Namespaced
versions:
- additionalPrinterColumns:
- jsonPath: .spec.entityType
name: EntityType
type: string
- jsonPath: .status.phase
name: Phase
type: string
Expand Down
Loading