-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathquestions.yml
More file actions
1706 lines (1668 loc) 路 46.3 KB
/
Copy pathquestions.yml
File metadata and controls
1706 lines (1668 loc) 路 46.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
questions:
- variable: dockerRegistry.enabled
label: Docker Registry Enabled
type: boolean
default: false
group: "Docker Registry"
show_subquestion_if: true
subquestions:
- variable: dockerRegistry.existingSecret
label: "Existing Docker Registry Secret"
type: string
default: ""
- variable: dockerRegistry.registry
label: "Docker Registry Url"
type: string
show_if: "dockerRegistry.existingSecret="
- variable: dockerRegistry.loginid
label: "Login ID"
type: string
show_if: "dockerRegistry.existingSecret="
- variable: dockerRegistry.password
label: "Password/Token"
type: password
show_if: "dockerRegistry.existingSecret="
- variable: planeVersion
label: Plane Version (Docker Image Tag)
type: string
default: v3.0.1
required: true
group: "Docker Registry"
subquestions:
- variable: services.web.image
label: Frontend Docker Image
type: string
required: true
default: "makeplane/web-commercial"
- variable: services.space.image
label: Space Docker Image
type: string
required: true
default: "makeplane/space-commercial"
- variable: services.admin.image
label: Admin Docker Image
type: string
required: true
default: "makeplane/admin-commercial"
- variable: services.live.image
label: Live Docker Image
type: string
required: true
default: "makeplane/live-commercial"
- variable: services.monitor.image
label: Monitor Docker Image
type: string
required: true
default: "makeplane/monitor-commercial"
- variable: services.silo.image
label: Silo Docker Image
type: string
required: true
default: "makeplane/silo-commercial"
- variable: services.api.image
label: Backend Docker Image
type: string
required: true
default: "makeplane/backend-commercial"
description: "Used by API, Worker, Beat-Worker"
- variable: services.email_service.image
label: Email Service Docker Image
type: string
required: true
default: "makeplane/email-commercial"
- variable: services.pi.image
label: Plane AI (PI) Docker Image
type: string
required: true
default: "makeplane/plane-pi-commercial"
- variable: env.storageClass
label: "Storage Class for Persistent Volume Claims"
type: storageclass
- variable: env.default_cluster_domain
label: "Default Cluster Domain"
description: "Kubernetes internal cluster domain used to build in-cluster service URLs"
type: string
default: "cluster.local"
- variable: license.licenseServer
label: "License Server"
type: string
required: true
group: "License Setup"
subquestions:
- variable: license.licenseDomain
label: "License Domain"
type: string
required: true
- variable: airgapped.enabled
label: "Airgapped Enabled"
type: boolean
default: false
group: "License Setup"
show_subquestion_if: true
subquestions:
- variable: airgapped.s3SecretName
label: "S3 Secret Name"
type: string
default: ""
- variable: airgapped.s3SecretKey
label: "S3 Secret Key"
type: string
default: ""
- variable: services.web.pullPolicy
label: "Web Pull Policy"
type: enum
options:
- "Always"
- "IfNotPresent"
- "Never"
default: "Always"
group: "Web Setup"
subquestions:
- variable: services.web.replicas
label: "Default Replica Count"
type: int
default: 1
- variable: services.web.memoryLimit
label: "Memory Limit"
type: string
default: 1000Mi
- variable: services.web.cpuLimit
label: "CPU Limit"
type: string
default: 500m
- variable: services.web.memoryRequest
label: "Memory Request"
type: string
default: 50Mi
- variable: services.web.cpuRequest
label: "CPU Request"
type: string
default: 50m
- variable: services.web.assign_cluster_ip
label: "Assign Cluster IP"
type: boolean
default: false
- variable: services.space.pullPolicy
label: "Space Pull Policy"
type: enum
options:
- "Always"
- "IfNotPresent"
- "Never"
default: "Always"
group: "Spaces Setup"
subquestions:
- variable: services.space.replicas
label: "Default Replica Count"
type: int
default: 1
- variable: services.space.memoryLimit
label: "Memory Limit"
type: string
default: 1000Mi
- variable: services.space.cpuLimit
label: "CPU Limit"
type: string
default: 500m
- variable: services.space.memoryRequest
label: "Memory Request"
type: string
default: 50Mi
- variable: services.space.cpuRequest
label: "CPU Request"
type: string
default: 50m
- variable: services.space.assign_cluster_ip
label: "Assign Cluster IP"
type: boolean
default: false
- variable: services.admin.pullPolicy
label: "Admin Pull Policy"
type: enum
options:
- "Always"
- "IfNotPresent"
- "Never"
default: "Always"
group: "Admin Setup"
subquestions:
- variable: services.admin.replicas
label: "Default Replica Count"
type: int
default: 1
- variable: services.admin.memoryLimit
label: "Memory Limit"
type: string
default: 1000Mi
- variable: services.admin.cpuLimit
label: "CPU Limit"
type: string
default: 500m
- variable: services.admin.memoryRequest
label: "Memory Request"
type: string
default: 50Mi
- variable: services.admin.cpuRequest
label: "CPU Request"
type: string
default: 50m
- variable: services.admin.assign_cluster_ip
label: "Assign Cluster IP"
type: boolean
default: false
- variable: services.live.pullPolicy
label: "Live Pull Policy"
type: enum
options:
- "Always"
- "IfNotPresent"
- "Never"
default: "Always"
group: "Live Setup"
subquestions:
- variable: services.live.replicas
label: "Default Replica Count"
type: int
default: 1
- variable: services.live.memoryLimit
label: "Memory Limit"
type: string
default: 1000Mi
- variable: services.live.cpuLimit
label: "CPU Limit"
type: string
default: 500m
- variable: services.live.memoryRequest
label: "Memory Request"
type: string
default: 50Mi
- variable: services.live.cpuRequest
label: "CPU Request"
type: string
default: 50m
- variable: services.live.assign_cluster_ip
label: "Assign Cluster IP"
type: boolean
default: false
- variable: env.live_sentry_dsn
label: "Sentry DSN"
type: string
default: ""
- variable: env.live_sentry_environment
label: "Sentry Environment"
type: string
default: "Development"
- variable: env.live_sentry_traces_sample_rate
label: "Sentry Traces Sample Rate"
type: string
- variable: env.live_server_secret_key
label: "Live Server Secret Key"
type: string
default: "htbqvBJAgpm9bzvf3r4urJer0ENReatceh"
- variable: services.silo.enabled
label: "Install Silo Service"
type: boolean
default: true
group: "Silo Setup"
show_subquestion_if: true
subquestions:
- variable: services.silo.replicas
label: "Default Replica Count"
type: int
default: 1
- variable: services.silo.memoryLimit
label: "Memory Limit"
type: string
default: 1000Mi
- variable: services.silo.cpuLimit
label: "CPU Limit"
type: string
default: 500m
- variable: services.silo.memoryRequest
label: "Memory Request"
type: string
default: 50Mi
- variable: services.silo.cpuRequest
label: "CPU Request"
type: string
default: 50m
- variable: services.silo.assign_cluster_ip
label: "Assign Cluster IP"
type: boolean
default: false
- variable: env.silo_envs.mq_prefetch_count
label: "MQ Prefetch Count"
type: int
default: 10
- variable: env.silo_envs.batch_size
label: "Batch Size"
type: int
default: 60
- variable: env.silo_envs.request_interval
label: "Request Interval"
type: int
default: 400
- variable: env.silo_envs.importers_queue_name
label: "Importers Queue Name"
type: string
default: "celery"
- variable: env.silo_envs.sentry_dsn
label: "Silo Sentry DSN"
type: string
default: ""
- variable: env.silo_envs.sentry_environment
label: "Silo Sentry Environment"
type: string
default: "development"
- variable: env.silo_envs.sentry_traces_sample_rate
label: "Silo Sentry Traces Sample Rate"
type: number
default: 0.1
- variable: env.silo_envs.hmac_secret_key
label: "Silo HMAC Secret Key"
type: string
default: ""
- variable: env.silo_envs.aes_secret_key
label: "Silo AES Secret Key"
type: string
default: "dsOdt7YrvxsTIFJ37pOaEVvLxN8KGBCr"
- variable: env.silo_envs.cors_allowed_origins
label: "Silo CORS Allowed Origins"
type: string
default: ""
- variable: env.silo_envs.jira_server_issues_page_size
label: "Jira Server Issues Page Size"
type: int
default: 50
- variable: env.silo_envs.jira_server_issues_parallel_pages
label: "Jira Server Issues Parallel Pages"
type: int
default: 1
- variable: env.silo_envs.cursor_webhook_secret
label: "Cursor Webhook Secret"
type: string
default: "TTqazTcoBajYKzIAeIKFZeTX9czAoUsG"
- variable: services.silo.connectors.slack.enabled
label: "Slack Integration"
type: boolean
default: false
group: "Silo Connectors"
show_subquestion_if: true
subquestions:
- variable: services.silo.connectors.slack.client_id
label: "Slack Client ID"
type: string
default: ""
- variable: services.silo.connectors.slack.client_secret
label: "Slack Client Secret"
type: string
default: ""
- variable: services.silo.connectors.slack.base_url
label: "Slack Base URL"
type: string
default: ""
- variable: services.silo.connectors.github.enabled
label: "Github App Integration"
type: boolean
default: false
group: "Silo Connectors"
show_subquestion_if: true
subquestions:
- variable: services.silo.connectors.github.client_id
label: "Github Client ID"
type: string
default: ""
- variable: services.silo.connectors.github.client_secret
label: "Github Client Secret"
type: string
default: ""
- variable: services.silo.connectors.github.app_name
label: "Github App Name"
type: string
default: ""
- variable: services.silo.connectors.github.app_id
label: "Github App ID"
type: string
default: ""
- variable: services.silo.connectors.github.private_key
label: "Github Private Key"
type: string
default: ""
- variable: services.silo.connectors.gitlab.enabled
label: "Gitlab App Integration"
type: boolean
default: false
group: "Silo Connectors"
show_subquestion_if: true
subquestions:
- variable: services.silo.connectors.gitlab.client_id
label: "Gitlab Client ID"
type: string
default: ""
- variable: services.silo.connectors.gitlab.client_secret
label: "Gitlab Client Secret"
type: string
default: ""
- variable: services.silo.connectors.sentry.enabled
label: "Sentry App Integration"
type: boolean
default: false
group: "Silo Connectors"
show_subquestion_if: true
subquestions:
- variable: services.silo.connectors.sentry.base_url
label: "Sentry Base URL"
type: string
default: ""
- variable: services.silo.connectors.sentry.client_id
label: "Sentry Client ID"
type: string
default: ""
- variable: services.silo.connectors.sentry.client_secret
label: "Sentry Client Secret"
type: string
default: ""
- variable: services.silo.connectors.sentry.integration_slug
label: "Sentry Integration Slug"
type: string
default: ""
- variable: services.silo.connectors.microsoft_teams.enabled
label: "Microsoft Teams Integration"
type: boolean
default: false
group: "Silo Connectors"
show_subquestion_if: true
subquestions:
- variable: services.silo.connectors.microsoft_teams.client_id
label: "MS Teams Client ID"
type: string
default: ""
- variable: services.silo.connectors.microsoft_teams.client_secret
label: "MS Teams Client Secret"
type: password
default: ""
- variable: services.silo.connectors.microsoft_teams.tenant_id
label: "MS Teams Tenant ID"
type: string
default: ""
- variable: services.silo.connectors.microsoft_teams.app_id
label: "MS Teams App ID"
type: string
default: ""
- variable: services.silo.connectors.microsoft_teams.app_type
label: "MS Teams App Type"
type: string
default: "MultiTenant"
- variable: services.monitor.pullPolicy
label: "Monitor Pull Policy"
type: enum
options:
- "Always"
- "IfNotPresent"
- "Never"
default: "Always"
group: "Monitor Setup"
subquestions:
- variable: services.monitor.memoryLimit
label: "Memory Limit"
type: string
default: 1000Mi
- variable: services.monitor.cpuLimit
label: "CPU Limit"
type: string
default: 500m
- variable: services.monitor.memoryRequest
label: "Memory Request"
type: string
default: 50Mi
- variable: services.monitor.cpuRequest
label: "CPU Request"
type: string
default: 50m
- variable: services.monitor.volumeSize
label: "Volume Size"
type: string
default: "100Mi"
- variable: services.monitor.assign_cluster_ip
label: "Assign Cluster IP"
type: boolean
default: false
- variable: services.api.pullPolicy
label: "API Pull Policy"
type: enum
options:
- "Always"
- "IfNotPresent"
- "Never"
default: "Always"
group: "API Setup"
subquestions:
- variable: services.api.replicas
label: "Default Replica Count"
type: int
default: 1
- variable: services.api.memoryLimit
label: "Memory Limit"
type: string
default: 1000Mi
- variable: services.api.cpuLimit
label: "CPU Limit"
type: string
default: 500m
- variable: services.api.memoryRequest
label: "Memory Request"
type: string
default: 50Mi
- variable: services.api.cpuRequest
label: "CPU Request"
type: string
default: 50m
- variable: services.api.assign_cluster_ip
label: "Assign Cluster IP"
type: boolean
default: false
- variable: env.cors_allowed_origins
label: "CORS Allowed Origins"
type: string
default: ""
- variable: env.sentry_dsn
label: "Sentry DSN"
type: string
default: ""
- variable: env.sentry_environment
label: "Sentry Environment"
type: string
default: "Development"
- variable: env.secret_key
label: "Random Secret Key"
type: string
required: true
default: "60gp0byfz2dvffa45cxl20p1scy9xbpf6d8c5y0geejgkyp1b5"
- variable: env.api_key_rate_limit
label: "API Key Rate Limit"
type: string
default: "60/minute"
- variable: env.allow_all_attachment_types
label: "Allow All Attachment Types"
type: boolean
default: false
- variable: env.enable_drf_spectacular
label: "Enable DRF Spectacular (OpenAPI)"
type: boolean
default: false
- variable: env.web_url
label: "Web URL"
type: string
default: ""
- variable: env.webhook_allowed_ips
label: "Webhook Allowed IPs"
type: string
default: ""
- variable: env.webhook_allowed_hosts
label: "Webhook Allowed Hosts"
type: string
default: ""
- variable: services.external_api.enabled
label: "Enable External API"
type: boolean
default: false
group: "External API Setup"
show_subquestion_if: true
subquestions:
- variable: services.external_api.replicas
label: "Default Replica Count"
type: int
default: 1
- variable: services.external_api.memoryLimit
label: "Memory Limit"
type: string
default: 1000Mi
- variable: services.external_api.cpuLimit
label: "CPU Limit"
type: string
default: 500m
- variable: services.external_api.memoryRequest
label: "Memory Request"
type: string
default: 50Mi
- variable: services.external_api.cpuRequest
label: "CPU Request"
type: string
default: 50m
- variable: services.external_api.assign_cluster_ip
label: "Assign Cluster IP"
type: boolean
default: false
- variable: services.worker.replicas
label: "Default Replica Count"
type: int
default: 1
group: "Worker Setup"
subquestions:
- variable: services.worker.memoryLimit
label: "Memory Limit"
type: string
default: 1000Mi
- variable: services.worker.cpuLimit
label: "CPU Limit"
type: string
default: 500m
- variable: services.worker.memoryRequest
label: "Memory Request"
type: string
default: 50Mi
- variable: services.worker.cpuRequest
label: "CPU Request"
type: string
default: 50m
- variable: services.worker_importers.enabled
label: "Enable Importer Worker"
type: boolean
default: false
group: "Importer Worker Setup"
show_subquestion_if: true
subquestions:
- variable: services.worker_importers.replicas
label: "Default Replica Count"
type: int
default: 1
- variable: services.worker_importers.memoryLimit
label: "Memory Limit"
type: string
default: 1000Mi
- variable: services.worker_importers.cpuLimit
label: "CPU Limit"
type: string
default: 500m
- variable: services.worker_importers.memoryRequest
label: "Memory Request"
type: string
default: 50Mi
- variable: services.worker_importers.cpuRequest
label: "CPU Request"
type: string
default: 50m
- variable: services.beatworker.replicas
label: "Default Replica Count"
type: int
default: 1
group: "Beat Worker Setup"
subquestions:
- variable: services.beatworker.memoryLimit
label: "Memory Limit"
type: string
default: 1000Mi
- variable: services.beatworker.cpuLimit
label: "CPU Limit"
type: string
default: 500m
- variable: services.beatworker.memoryRequest
label: "Memory Request"
type: string
default: 50Mi
- variable: services.beatworker.cpuRequest
label: "CPU Request"
type: string
default: 50m
- variable: services.email_service.enabled
label: "Enable Email Service"
type: boolean
default: false
group: "Email Service Setup"
show_subquestion_if: true
subquestions:
- variable: services.email_service.replicas
label: "Default Replica Count"
type: int
default: 1
- variable: services.email_service.memoryLimit
label: "Memory Limit"
type: string
default: 1000Mi
- variable: services.email_service.cpuLimit
label: "CPU Limit"
type: string
default: 500m
- variable: services.email_service.memoryRequest
label: "Memory Request"
type: string
default: 50Mi
- variable: services.email_service.cpuRequest
label: "CPU Request"
type: string
default: 50m
- variable: env.email_service_envs.smtp_domain
label: "SMTP Domain"
type: string
default: ""
- variable: env.email_service_envs.max_attachment_size
label: "Max Attachment Size (bytes)"
type: string
default: "10485760"
description: "Maximum email attachment size in bytes (default 10485760 = 10MB)"
- variable: ssl.issuer
label: "SSL Issuer"
type: enum
options:
- "http"
- "cloudflare"
- "digitalocean"
default: "http"
- variable: ssl.server
label: "Let's Encrypt Server URL"
type: string
default: "https://acme-v02.services.api.letsencrypt.org/directory"
- variable: ssl.email
label: "Let's Encrypt Reg. Email"
type: string
default: "plane@example.com"
- variable: ssl.token
label: "Provider API Token"
type: password
default: ""
description: "Not required for 'http' issuer"
show_if: "ssl.issuer=cloudflare || ssl.issuer=digitalocean"
- variable: services.outbox_poller.enabled
label: "Enable Outbox Poller"
type: boolean
default: false
group: "Outbox Poller Setup"
show_subquestion_if: true
subquestions:
- variable: services.outbox_poller.replicas
label: "Default Replica Count"
type: int
default: 1
- variable: services.outbox_poller.memoryLimit
label: "Memory Limit"
type: string
default: 1000Mi
- variable: services.outbox_poller.cpuLimit
label: "CPU Limit"
type: string
default: 500m
- variable: services.outbox_poller.memoryRequest
label: "Memory Request"
type: string
default: 50Mi
- variable: services.outbox_poller.cpuRequest
label: "CPU Request"
type: string
default: 50m
- variable: services.outbox_poller.assign_cluster_ip
label: "Assign Cluster IP"
type: boolean
default: false
- variable: env.outbox_poller_envs.memory_limit_mb
label: "Memory Limit"
type: int
default: 400
- variable: env.outbox_poller_envs.interval_min
label: "Interval Min"
type: number
default: 0.25
- variable: env.outbox_poller_envs.interval_max
label: "Interval Max"
type: number
default: 2
- variable: env.outbox_poller_envs.batch_size
label: "Batch Size"
type: int
default: 250
- variable: env.outbox_poller_envs.memory_check_interval
label: "Memory Check Interval"
type: int
default: 30
- variable: env.outbox_poller_envs.pool.size
label: "Pool Size"
type: int
default: 4
- variable: env.outbox_poller_envs.pool.min_size
label: "Pool Min Size"
type: int
default: 2
- variable: env.outbox_poller_envs.pool.max_size
label: "Pool Max Size"
type: int
default: 10
- variable: env.outbox_poller_envs.pool.timeout
label: "Pool Timeout"
type: number
default: 30.0
- variable: env.outbox_poller_envs.pool.max_idle
label: "Pool Max Idle"
type: number
default: 300.0
- variable: env.outbox_poller_envs.pool.max_lifetime
label: "Pool Max Lifetime"
type: number
default: 3600.0
- variable: env.outbox_poller_envs.pool.reconnect_timeout
label: "Pool Reconnect Timeout"
type: number
default: 5.0
- variable: env.outbox_poller_envs.pool.health_check_interval
label: "Pool Health Check Interval"
type: number
default: 60
- variable: services.automation_consumer.enabled
label: "Enable Automation Consumer"
type: boolean
default: false
group: "Automation Consumer Setup"
show_subquestion_if: true
subquestions:
- variable: services.automation_consumer.replicas
label: "Default Replica Count"
type: int
default: 1
- variable: services.automation_consumer.memoryLimit
label: "Memory Limit"
type: string
default: 1000Mi
- variable: services.automation_consumer.cpuLimit
label: "CPU Limit"
type: string
default: 500m
- variable: services.automation_consumer.memoryRequest
label: "Memory Request"
type: string
default: 50Mi
- variable: services.automation_consumer.cpuRequest
label: "CPU Request"
type: string
default: 50m
- variable: services.automation_consumer.assign_cluster_ip
label: "Assign Cluster IP"
type: boolean
default: false
- variable: env.automation_consumer_envs.event_stream_queue_name
label: "Event Stream Queue Name"
type: string
default: "plane.event_stream.automations"
- variable: env.automation_consumer_envs.event_stream_prefetch
label: "Event Stream Prefetch"
type: int
default: 10
- variable: env.automation_consumer_envs.exchange_name
label: "Exchange Name"
type: string
default: "plane.event_stream"
- variable: env.automation_consumer_envs.event_types
label: "Event Types"
type: string
default: "issue"
- variable: services.webhook_consumer.enabled
label: "Enable Webhook Consumer"
type: boolean
default: false
group: "Webhook Consumer Setup"
show_subquestion_if: true
subquestions:
- variable: services.webhook_consumer.replicas
label: "Default Replica Count"
type: int
default: 1
- variable: services.webhook_consumer.memoryLimit
label: "Memory Limit"
type: string
default: 1000Mi
- variable: services.webhook_consumer.cpuLimit
label: "CPU Limit"
type: string
default: 500m
- variable: services.webhook_consumer.memoryRequest
label: "Memory Request"
type: string
default: 500Mi
- variable: services.webhook_consumer.cpuRequest
label: "CPU Request"
type: string
default: 250m
- variable: services.webhook_consumer.assign_cluster_ip
label: "Assign Cluster IP"
type: boolean
default: false
- variable: env.webhook_consumer_envs.queue_name
label: "Webhook Queue Name"
type: string
default: "plane.webhook"
- variable: env.webhook_consumer_envs.prefetch_count
label: "Webhook Prefetch Count"
type: int
default: 10
- variable: services.agent_consumer.enabled
label: "Enable Agent Consumer"
type: boolean
default: false
group: "Agent Consumer Setup"
show_subquestion_if: true
subquestions:
- variable: services.agent_consumer.replicas
label: "Default Replica Count"
type: int
default: 1
- variable: services.agent_consumer.memoryLimit
label: "Memory Limit"
type: string
default: 1000Mi
- variable: services.agent_consumer.cpuLimit
label: "CPU Limit"
type: string
default: 500m
- variable: services.agent_consumer.memoryRequest
label: "Memory Request"
type: string
default: 500Mi
- variable: services.agent_consumer.cpuRequest
label: "CPU Request"
type: string
default: 250m
- variable: services.agent_consumer.assign_cluster_ip
label: "Assign Cluster IP"
type: boolean
default: false
- variable: env.agent_consumer_envs.queue_name
label: "Agent Queue Name"
type: string
default: "plane.agent"
- variable: env.agent_consumer_envs.prefetch_count
label: "Agent Prefetch Count"
type: int
default: 10
- variable: services.iframely.enabled
label: "Enable Iframely"
type: boolean
default: false
group: "Iframely Setup"
show_subquestion_if: true
subquestions:
- variable: services.iframely.image
label: "Docker Image"
type: string
default: "makeplane/iframely:v1.2.0"
- variable: services.iframely.pullPolicy
label: "Iframely Pull Policy"
type: enum
options:
- "Always"
- "IfNotPresent"
- "Never"
default: "Always"
- variable: services.iframely.replicas
label: "Default Replica Count"
type: int
default: 1
- variable: services.iframely.memoryLimit
label: "Memory Limit"
type: string
default: 1000Mi
- variable: services.iframely.cpuLimit
label: "CPU Limit"
type: string
default: 500m
- variable: services.iframely.memoryRequest
label: "Memory Request"
type: string
default: 50Mi
- variable: services.iframely.cpuRequest
label: "CPU Request"
type: string
default: 50m
- variable: services.iframely.assign_cluster_ip
label: "Assign Cluster IP"
type: boolean
default: false
- variable: services.pi.enabled
label: "Enable Plane AI (PI) Service"
type: boolean