Skip to content

Commit 27cedf3

Browse files
author
Adriano Santos
committed
feat: add new additionalPrinterColumns to CRDs
1 parent 9de0793 commit 27cedf3

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

spawn_operator/spawn_operator/lib/spawn_operator/versions/api/v1/actor_host.ex

+7-1
Original file line numberDiff line numberDiff line change
@@ -152,11 +152,17 @@ defmodule SpawnOperator.Versions.Api.V1.ActorHost do
152152
"""a,
153153
additionalPrinterColumns: [
154154
%{
155-
name: "Host SDK",
155+
name: "SDK",
156156
type: "string",
157157
description: "SDK used by the ActorHost",
158158
jsonPath: ".spec.host.sdk"
159159
},
160+
%{
161+
name: "Embedded",
162+
type: "string",
163+
description: "Embedded Proxy used by the ActorHost",
164+
jsonPath: ".spec.host.embedded"
165+
},
160166
%{
161167
name: "Image",
162168
type: "string",

spawn_operator/spawn_operator/lib/spawn_operator/versions/api/v1/actor_system.ex

+7-1
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,16 @@ defmodule SpawnOperator.Versions.Api.V1.ActorSystem do
7070
jsonPath: ".spec.cluster.kind"
7171
},
7272
%{
73-
name: "State Store Type",
73+
name: "Statestore",
7474
type: "string",
7575
description: "The type of state store used for the ActorSystem",
7676
jsonPath: ".spec.statestore.type"
77+
},
78+
%{
79+
name: "Pool Size",
80+
type: "string",
81+
description: "The pool size of the state store",
82+
jsonPath: ".spec.statestore.pool.size"
7783
}
7884
]
7985
)

0 commit comments

Comments
 (0)