Skip to content
Open
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
3 changes: 2 additions & 1 deletion api/v1alpha1/amaltheasession_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,8 @@ type AmaltheaSessionStatus struct {

// +kubebuilder:printcolumn:name="Status",type="string",JSONPath=`.status.state`,description="The overall status of the session."
// +kubebuilder:printcolumn:name="Ready",type="string",JSONPath=`.status.containerCounts.ready`,description="The number of containers in a ready state for the session, disregarding init containers."
// +kubebuilder:printcolumn:name="Total",type="string",JSONPath=`.status.containerCounts.total`,description="The total numeber of containers in the session, disregarding init containers."
// +kubebuilder:printcolumn:name="Total",type="string",JSONPath=`.status.containerCounts.total`,description="The total number of containers in the session, disregarding init containers."
// +kubebuilder:printcolumn:name="Age",type="date",JSONPath=".metadata.creationTimestamp"
Comment thread
olevski marked this conversation as resolved.
// +kubebuilder:printcolumn:name="Idle",type="boolean",JSONPath=`.status.idle`,description="Whether the session is idle or not."
// +kubebuilder:printcolumn:name="URL",type="string",JSONPath=`.status.url`,description="The URL where the session can be accessed."
// AmaltheaSession is the Schema for the amaltheasessions API
Expand Down
5 changes: 4 additions & 1 deletion config/crd/bases/amalthea.dev_amaltheasessions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,14 @@ spec:
jsonPath: .status.containerCounts.ready
name: Ready
type: string
- description: The total numeber of containers in the session, disregarding init
- description: The total number of containers in the session, disregarding init
containers.
jsonPath: .status.containerCounts.total
name: Total
type: string
- jsonPath: .metadata.creationTimestamp
name: Age
type: date
- description: Whether the session is idle or not.
jsonPath: .status.idle
name: Idle
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,14 @@ spec:
jsonPath: .status.containerCounts.ready
name: Ready
type: string
- description: The total numeber of containers in the session, disregarding init
- description: The total number of containers in the session, disregarding init
containers.
jsonPath: .status.containerCounts.total
name: Total
type: string
- jsonPath: .metadata.creationTimestamp
name: Age
type: date
- description: Whether the session is idle or not.
jsonPath: .status.idle
name: Idle
Expand Down
Loading