@daocloud-proto/skoala 0.45.0-6 → 0.45.0-8
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.
|
@@ -11,6 +11,12 @@ import * as SkoalaApiGeneralV1alpha1Resource from "../../general/v1alpha1/resour
|
|
|
11
11
|
import * as SkoalaApiGeneralV1alpha1Service from "../../general/v1alpha1/service.pb"
|
|
12
12
|
import * as SkoalaApiHostedV1alpha1Plugins from "./plugins.pb"
|
|
13
13
|
|
|
14
|
+
export enum LogTarget {
|
|
15
|
+
LOG_TARGET_UNSPECIFIED = "LOG_TARGET_UNSPECIFIED",
|
|
16
|
+
file = "file",
|
|
17
|
+
console = "console",
|
|
18
|
+
}
|
|
19
|
+
|
|
14
20
|
export enum NacosConfigFileType {
|
|
15
21
|
CONFIG_TYPE_UNSPECIFIED = "CONFIG_TYPE_UNSPECIFIED",
|
|
16
22
|
text = "text",
|
|
@@ -124,8 +130,9 @@ export type Nacos = {
|
|
|
124
130
|
workloadState?: SkoalaApiGeneralV1alpha1Common.WorkloadState
|
|
125
131
|
failedReason?: string[]
|
|
126
132
|
ldap?: LDAP
|
|
127
|
-
affinity?: SkoalaApiGeneralV1alpha1Affinity.Affinity
|
|
128
133
|
lbParam?: LoadBalanceParam
|
|
134
|
+
affinity?: SkoalaApiGeneralV1alpha1Affinity.Affinity
|
|
135
|
+
logTarget?: LogTarget
|
|
129
136
|
}
|
|
130
137
|
|
|
131
138
|
export type NacosDatabase = {
|
|
@@ -239,6 +246,7 @@ export type NacosConfig = {
|
|
|
239
246
|
jvmPercentage?: number
|
|
240
247
|
ldap?: LDAP
|
|
241
248
|
affinity?: SkoalaApiGeneralV1alpha1Affinity.Affinity
|
|
249
|
+
logTarget?: LogTarget
|
|
242
250
|
}
|
|
243
251
|
|
|
244
252
|
export type Volume = {
|