@daocloud-proto/mcamel-minio 0.2.0-99 → 0.3.0-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.
- package/common.pb.ts +1 -2
- package/minio.pb.ts +8 -6
- package/package.json +1 -1
package/common.pb.ts
CHANGED
|
@@ -10,7 +10,7 @@ export enum ExternalTrafficPolicy {
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
export enum LBTyp {
|
|
13
|
-
|
|
13
|
+
MetlLB = "MetlLB",
|
|
14
14
|
Others = "Others",
|
|
15
15
|
}
|
|
16
16
|
|
|
@@ -148,7 +148,6 @@ export type PodCommon = {
|
|
|
148
148
|
conditions?: PodCommonCondition[]
|
|
149
149
|
containersName?: string[]
|
|
150
150
|
ownerReference?: OwnerReference[]
|
|
151
|
-
initContainersName?: string[]
|
|
152
151
|
}
|
|
153
152
|
|
|
154
153
|
export type OwnerReference = {
|
package/minio.pb.ts
CHANGED
|
@@ -32,6 +32,12 @@ export enum GetMinioConfReqSortDir {
|
|
|
32
32
|
DESC = "DESC",
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
+
export enum CreateMinioReqServiceType {
|
|
36
|
+
ClusterIP = "ClusterIP",
|
|
37
|
+
NodePort = "NodePort",
|
|
38
|
+
LoadBalancer = "LoadBalancer",
|
|
39
|
+
}
|
|
40
|
+
|
|
35
41
|
export enum CreateMinioReqInstanceType {
|
|
36
42
|
HighAvailable = "HighAvailable",
|
|
37
43
|
Single = "Single",
|
|
@@ -122,7 +128,7 @@ export type CreateMinioReq = {
|
|
|
122
128
|
volumesPerServer?: number
|
|
123
129
|
storageClassName?: string
|
|
124
130
|
storageCapacity?: string
|
|
125
|
-
serviceType?:
|
|
131
|
+
serviceType?: CreateMinioReqServiceType
|
|
126
132
|
serviceAnnotations?: {[key: string]: string}
|
|
127
133
|
ports?: CreateMinioReqPorts[]
|
|
128
134
|
cpuRequest?: string
|
|
@@ -132,17 +138,13 @@ export type CreateMinioReq = {
|
|
|
132
138
|
instanceType?: CreateMinioReqInstanceType
|
|
133
139
|
consoleAccessKey?: string
|
|
134
140
|
consoleSecretKey?: string
|
|
135
|
-
consoleServiceType?:
|
|
141
|
+
consoleServiceType?: CreateMinioReqServiceType
|
|
136
142
|
consoleNodePort?: number
|
|
137
143
|
consoleServiceAnnotations?: {[key: string]: string}
|
|
138
144
|
minioRootUser?: string
|
|
139
145
|
minioRootPassword?: string
|
|
140
146
|
buckets?: CreateMinioReqBucket[]
|
|
141
147
|
affinity?: CommonCommon.Affinity
|
|
142
|
-
externalTrafficPolicy?: CommonCommon.ExternalTrafficPolicy
|
|
143
|
-
lbTyp?: CommonCommon.LBTyp
|
|
144
|
-
lbPoolName?: string
|
|
145
|
-
lbAddress?: string
|
|
146
148
|
}
|
|
147
149
|
|
|
148
150
|
export type UpdateMinioConfReq = {
|