Skip to content

Commit

Permalink
feat: add new additionalPrinterColumns to CRDs
Browse files Browse the repository at this point in the history
  • Loading branch information
Adriano Santos committed Jan 10, 2025
1 parent 9de0793 commit 27cedf3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,11 +152,17 @@ defmodule SpawnOperator.Versions.Api.V1.ActorHost do
"""a,
additionalPrinterColumns: [
%{
name: "Host SDK",
name: "SDK",
type: "string",
description: "SDK used by the ActorHost",
jsonPath: ".spec.host.sdk"
},
%{
name: "Embedded",
type: "string",
description: "Embedded Proxy used by the ActorHost",
jsonPath: ".spec.host.embedded"
},
%{
name: "Image",
type: "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,16 @@ defmodule SpawnOperator.Versions.Api.V1.ActorSystem do
jsonPath: ".spec.cluster.kind"
},
%{
name: "State Store Type",
name: "Statestore",
type: "string",
description: "The type of state store used for the ActorSystem",
jsonPath: ".spec.statestore.type"
},
%{
name: "Pool Size",
type: "string",
description: "The pool size of the state store",
jsonPath: ".spec.statestore.pool.size"
}
]
)
Expand Down

0 comments on commit 27cedf3

Please sign in to comment.