@daocloud-proto/skoala 0.53.0 → 0.54.0
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.
|
@@ -140,9 +140,19 @@ export type Cluster = {
|
|
|
140
140
|
name?: string
|
|
141
141
|
clusterProvider?: ClusterProvider
|
|
142
142
|
clusterPhase?: ClusterPhase
|
|
143
|
+
network?: ClusterPlugin[]
|
|
143
144
|
version?: string
|
|
144
145
|
}
|
|
145
146
|
|
|
147
|
+
export type ClusterPlugin = {
|
|
148
|
+
name?: string
|
|
149
|
+
enabled?: boolean
|
|
150
|
+
setting?: string
|
|
151
|
+
intelligentDetection?: boolean
|
|
152
|
+
health?: boolean
|
|
153
|
+
externalAddress?: string
|
|
154
|
+
}
|
|
155
|
+
|
|
146
156
|
export type Mesh = {
|
|
147
157
|
id?: string
|
|
148
158
|
name?: string
|
|
@@ -133,6 +133,8 @@ export type Nacos = {
|
|
|
133
133
|
lbParam?: LoadBalanceParam
|
|
134
134
|
affinity?: SkoalaApiGeneralV1alpha1Affinity.Affinity
|
|
135
135
|
logTarget?: LogTarget
|
|
136
|
+
staticIpAnnotations?: {[key: string]: string}
|
|
137
|
+
consoleAddress?: string
|
|
136
138
|
}
|
|
137
139
|
|
|
138
140
|
export type NacosDatabase = {
|
|
@@ -78,6 +78,7 @@ export type Cluster = {
|
|
|
78
78
|
name?: string
|
|
79
79
|
clusterProvider?: SkoalaApiGeneralV1alpha1Common.ClusterProvider
|
|
80
80
|
clusterPhase?: SkoalaApiGeneralV1alpha1Common.ClusterPhase
|
|
81
|
+
network?: SkoalaApiGeneralV1alpha1Common.ClusterPlugin[]
|
|
81
82
|
version?: string
|
|
82
83
|
}
|
|
83
84
|
|
|
@@ -86,6 +87,7 @@ export type ClusterWorkspace = {
|
|
|
86
87
|
name?: string
|
|
87
88
|
clusterProvider?: SkoalaApiGeneralV1alpha1Common.ClusterProvider
|
|
88
89
|
clusterPhase?: SkoalaApiGeneralV1alpha1Common.ClusterPhase
|
|
90
|
+
network?: SkoalaApiGeneralV1alpha1Common.ClusterPlugin[]
|
|
89
91
|
version?: string
|
|
90
92
|
workspaceId?: string
|
|
91
93
|
workspaceName?: string
|