File tree Expand file tree Collapse file tree 3 files changed +28
-4
lines changed Expand file tree Collapse file tree 3 files changed +28
-4
lines changed Original file line number Diff line number Diff line change 13
13
"postgres" : false
14
14
},
15
15
"images" : {
16
- "operator" : " ghcr.io/nuvolaris/nuvolaris-operator:3.1.0-mastrogpt.2403031745 " ,
16
+ "operator" : " ghcr.io/nuvolaris/nuvolaris-operator:3.1.0-mastrogpt.2410172007 " ,
17
17
"controller" : " ghcr.io/nuvolaris/openwhisk-controller:3.1.0-mastrogpt.2402101445"
18
18
},
19
19
"server" : {
Original file line number Diff line number Diff line change @@ -324,7 +324,7 @@ spec:
324
324
- acme-registered-email
325
325
- acme-server-url
326
326
minio :
327
- description : used to oconfigure the internal minio data storage service
327
+ description : used to configure the internal minio data storage service
328
328
type : object
329
329
properties :
330
330
volume-size :
@@ -352,6 +352,25 @@ spec:
352
352
required :
353
353
- user
354
354
- password
355
+ ingress :
356
+ description : configuration option for global minio ingresses exposure
357
+ type : object
358
+ properties :
359
+ s3-enabled :
360
+ description : boolean flag to activate MINIO S3 compatible ingress. Default to false
361
+ type : boolean
362
+ s3-hostname :
363
+ description : ingress hostname to be used if true (normally s3.<apihost>)
364
+ type : string
365
+ console-enabled :
366
+ description : boolean flag to expose MINIO console
367
+ type : boolean
368
+ console-hostname :
369
+ description : ingress hostname to be used (nora=mally minio.<apihost>)
370
+ type : string
371
+ required :
372
+ - s3-enabled
373
+ - console-enabled
355
374
required :
356
375
- volume-size
357
376
- admin
Original file line number Diff line number Diff line change @@ -128,13 +128,18 @@ spec:
128
128
exposedExternally : False
129
129
useOperator : False
130
130
minio :
131
- volume-size : 2
131
+ ingress :
132
+ s3-enabled : ${MINIO_CONFIG_INGRESS_S3_ENABLED:-true}
133
+ console-enabled : ${MINIO_CONFIG_INGRESS_CONSOLE_ENABLED:-false}
134
+ s3-hostname : ${MINIO_CONFIG_INGRESS_S3_HOSTNAME:-auto}
135
+ console-hostname : ${MINIO_CONFIG_INGRESS_CONSOLE_HOSTNAME:-auto}
136
+ volume-size : ${NUVOLARIS_STORAGE_VOLUME_SIZE:-50}
132
137
admin :
133
138
user : minioadmin
134
139
password : $SECRET_MINIO_ADMIN
135
140
nuvolaris :
136
141
user : nuvolaris
137
- password : $SECRET_MINIO_NUVOLARIS
142
+ password : $SECRET_MINIO_NUVOLARIS
138
143
postgres :
139
144
volume-size : 5
140
145
replicas : 2
You can’t perform that action at this time.
0 commit comments