@daocloud-proto/skoala 0.45.0-2 → 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 = {
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
import * as SkoalaApiGeneralV1alpha1Common from "../../general/v1alpha1/common.pb"
|
|
8
8
|
import * as SkoalaApiGeneralV1alpha1Resource from "../../general/v1alpha1/resource.pb"
|
|
9
9
|
import * as SkoalaApiGeneralV1alpha1Service from "../../general/v1alpha1/service.pb"
|
|
10
|
+
import * as SkoalaApiHostedV1alpha2Ratelimit_rule from "./ratelimit_rule.pb"
|
|
10
11
|
|
|
11
12
|
type Absent<T, K extends keyof T> = { [k in Exclude<keyof T, K>]?: undefined };
|
|
12
13
|
type OneOf<T> =
|
|
@@ -347,6 +348,7 @@ export type RatelimitDeployConfig = {
|
|
|
347
348
|
config?: RatelimitDeployConfigRatelimitConfig[]
|
|
348
349
|
labels?: {[key: string]: string}
|
|
349
350
|
annotations?: {[key: string]: string}
|
|
351
|
+
ratelimitRuleConfig?: SkoalaApiHostedV1alpha2Ratelimit_rule.RatelimitRuleConfig[]
|
|
350
352
|
}
|
|
351
353
|
|
|
352
354
|
export type Telemetry = {
|