You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: controller/deploy/helm/jumpstarter/charts/jumpstarter-controller/templates/crds/jumpstarter.dev_exporters.yaml
+26-1Lines changed: 26 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,15 @@ spec:
14
14
singular: exporter
15
15
scope: Namespaced
16
16
versions:
17
-
- name: v1alpha1
17
+
- additionalPrinterColumns:
18
+
- jsonPath: .status.exporterStatus
19
+
name: Status
20
+
type: string
21
+
- jsonPath: .status.statusMessage
22
+
name: Message
23
+
priority: 1
24
+
type: string
25
+
name: v1alpha1
18
26
schema:
19
27
openAPIV3Schema:
20
28
description: Exporter is the Schema for the exporters API
@@ -133,6 +141,19 @@ spec:
133
141
type: array
134
142
endpoint:
135
143
type: string
144
+
exporterStatus:
145
+
description: ExporterStatusValue is the current operational status
146
+
reported by the exporter
147
+
enum:
148
+
- Unspecified
149
+
- Offline
150
+
- Available
151
+
- BeforeLeaseHook
152
+
- LeaseReady
153
+
- AfterLeaseHook
154
+
- BeforeLeaseHookFailed
155
+
- AfterLeaseHookFailed
156
+
type: string
136
157
lastSeen:
137
158
format: date-time
138
159
type: string
@@ -152,6 +173,10 @@ spec:
152
173
type: string
153
174
type: object
154
175
x-kubernetes-map-type: atomic
176
+
statusMessage:
177
+
description: StatusMessage is an optional human-readable message describing
0 commit comments