@@ -225,7 +225,7 @@ questions:
225
225
- variable : redis.volumeSize
226
226
label : " Volume Size"
227
227
type : string
228
- default : " 1Gi "
228
+ default : " 100Mi "
229
229
show_if : " redis.local_setup=true"
230
230
- variable : redis.assign_cluster_ip
231
231
label : " Assign Cluster IP"
@@ -267,7 +267,7 @@ questions:
267
267
- variable : postgres.volumeSize
268
268
label : " Volume Size"
269
269
type : string
270
- default : " 5Gi "
270
+ default : " 1Gi "
271
271
show_if : " postgres.local_setup=true"
272
272
- variable : env.pgdb_username
273
273
label : " Username"
@@ -295,6 +295,57 @@ questions:
295
295
default : " postrgres://"
296
296
show_if : " postgres.local_setup=false"
297
297
298
+ - variable : rabbitmq.local_setup
299
+ label : " Install RabbitMQ"
300
+ type : boolean
301
+ default : true
302
+ group : " RabbitMQ Setup"
303
+ subquestions :
304
+ - variable : rabbitmq.image
305
+ label : " Docker Image"
306
+ type : string
307
+ default : " rabbitmq:3.13.6-management-alpine"
308
+ show_if : " rabbitmq.local_setup=true"
309
+ - variable : rabbitmq.servicePort
310
+ label : Service Port
311
+ type : int
312
+ default : 5672
313
+ show_if : " rabbitmq.local_setup=true"
314
+ - variable : rabbitmq.managementPort
315
+ label : Management Port
316
+ type : int
317
+ default : 15672
318
+ show_if : " rabbitmq.local_setup=true"
319
+ - variable : rabbitmq.assign_cluster_ip
320
+ label : " Assign ClusterIP"
321
+ type : boolean
322
+ default : false
323
+ show_if : " rabbitmq.local_setup=true"
324
+ - variable : rabbitmq.storageClass
325
+ label : " Storage Class"
326
+ type : string
327
+ default : " longhorn"
328
+ show_if : " rabbitmq.local_setup=true"
329
+ - variable : rabbitmq.volumeSize
330
+ label : " Volume Size"
331
+ type : string
332
+ default : " 100Mi"
333
+ show_if : " rabbitmq.local_setup=true"
334
+ - variable : rabbitmq.default_user
335
+ label : " Username"
336
+ type : string
337
+ default : " plane"
338
+ show_if : " rabbitmq.local_setup=true"
339
+ - variable : rabbitmq.default_password
340
+ label : " Password"
341
+ type : password
342
+ default : " plane"
343
+ show_if : " rabbitmq.local_setup=true"
344
+ - variable : rabbitmq.external_rabbitmq_url
345
+ label : " Remote URL"
346
+ type : string
347
+ show_if : " rabbitmq.local_setup=false"
348
+
298
349
- variable : minio.local_setup
299
350
label : " Install Minio"
300
351
type : boolean
@@ -324,7 +375,7 @@ questions:
324
375
- variable : minio.volumeSize
325
376
label : " Volume Size"
326
377
type : string
327
- default : " 5Gi "
378
+ default : " 1Gi "
328
379
show_if : " minio.local_setup=true"
329
380
- variable : minio.assign_cluster_ip
330
381
label : " Assign Cluster IP"
@@ -377,6 +428,11 @@ questions:
377
428
type : string
378
429
default : " plane-minio.example.com"
379
430
show_if : " minio.local_setup=true"
431
+ - variable : ingress.rabbitmqHost
432
+ label : " Rabbitmq Host"
433
+ type : string
434
+ default : " plane-rabbitmq.example.com"
435
+ show_if : " rabbitmq.local_setup=true"
380
436
- variable : ingress.ingressClass
381
437
label : " Ingress Classname"
382
438
type : string
0 commit comments