@daocloud-proto/skoala 0.48.0 → 0.48.1-2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -34,6 +34,18 @@ export enum EnvoyLogLevel {
|
|
|
34
34
|
off = "off",
|
|
35
35
|
}
|
|
36
36
|
|
|
37
|
+
export enum HelmStatus {
|
|
38
|
+
STATUS_UNKNOWN = "STATUS_UNKNOWN",
|
|
39
|
+
STATUS_DEPLOYED = "STATUS_DEPLOYED",
|
|
40
|
+
STATUS_UNINSTALLED = "STATUS_UNINSTALLED",
|
|
41
|
+
STATUS_SUPERSEDED = "STATUS_SUPERSEDED",
|
|
42
|
+
STATUS_FAILED = "STATUS_FAILED",
|
|
43
|
+
STATUS_UNINSTALLING = "STATUS_UNINSTALLING",
|
|
44
|
+
STATUS_PENDING_INSTALL = "STATUS_PENDING_INSTALL",
|
|
45
|
+
STATUS_PENDING_UPGRADE = "STATUS_PENDING_UPGRADE",
|
|
46
|
+
STATUS_PENDING_ROLLBACK = "STATUS_PENDING_ROLLBACK",
|
|
47
|
+
}
|
|
48
|
+
|
|
37
49
|
export enum GatewayStatus {
|
|
38
50
|
GATEWAY_STATUS_UNSPECIFIED = "GATEWAY_STATUS_UNSPECIFIED",
|
|
39
51
|
Unknown = "Unknown",
|
|
@@ -236,6 +248,8 @@ export type AIGateway = {
|
|
|
236
248
|
worker?: Node
|
|
237
249
|
clusterPhase?: SkoalaApiGeneralV1alpha1Common.ClusterPhase
|
|
238
250
|
consoleUrl?: string
|
|
251
|
+
status?: HelmStatus
|
|
252
|
+
serviceType?: SkoalaApiGeneralV1alpha1Service.ServiceType
|
|
239
253
|
}
|
|
240
254
|
|
|
241
255
|
export type GatewayCondition = {
|