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
4 changes: 3 additions & 1 deletion kagenti-operator/api/v1alpha1/agentcard_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,9 @@ type SkillParameter struct {
// +kubebuilder:printcolumn:name="LastSync",type="date",JSONPath=".status.lastSyncTime",description="Last Sync Time"
// +kubebuilder:printcolumn:name="Age",type="date",JSONPath=".metadata.creationTimestamp"

// AgentCard is the Schema for the agentcards API.
// AgentCard binds an A2A agent card to a backing workload. The controller periodically
// fetches the card from the referenced workload, verifies its JWS signature and SPIFFE
// identity against the configured trust domain, and caches the result in status.
type AgentCard struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Expand Down
4 changes: 3 additions & 1 deletion kagenti-operator/api/v1alpha1/agentruntime_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,9 @@ type AgentRuntimeStatus struct {
// +kubebuilder:printcolumn:name="Phase",type="string",JSONPath=".status.phase",description="Runtime Phase"
// +kubebuilder:printcolumn:name="Age",type="date",JSONPath=".metadata.creationTimestamp"

// AgentRuntime is the Schema for the agentruntimes API.
// AgentRuntime attaches runtime configuration to a backing workload classified as an
// agent or tool, providing per-workload overrides for SPIFFE identity and OpenTelemetry
// tracing. The controller reports pod configuration coverage and phase in status.
type AgentRuntime struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ spec:
name: v1alpha1
schema:
openAPIV3Schema:
description: AgentCard is the Schema for the agentcards API.
description: |-
AgentCard binds an A2A agent card to a backing workload. The controller periodically
fetches the card from the referenced workload, verifies its JWS signature and SPIFFE
identity against the configured trust domain, and caches the result in status.
properties:
apiVersion:
description: |-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ spec:
name: v1alpha1
schema:
openAPIV3Schema:
description: AgentRuntime is the Schema for the agentruntimes API.
description: |-
AgentRuntime attaches runtime configuration to a backing workload classified as an
agent or tool, providing per-workload overrides for SPIFFE identity and OpenTelemetry
tracing. The controller reports pod configuration coverage and phase in status.
properties:
apiVersion:
description: |-
Expand Down
Loading