-
Notifications
You must be signed in to change notification settings - Fork 568
Expand file tree
/
Copy pathenv_gen.json
More file actions
2458 lines (2458 loc) · 73.8 KB
/
env_gen.json
File metadata and controls
2458 lines (2458 loc) · 73.8 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
[
{
"Category": "CD",
"Fields": [
{
"Env": "ARGO_APP_MANUAL_SYNC_TIME",
"EnvType": "int",
"EnvValue": "3",
"EnvDescription": "retry argocd app manual sync if the timeline is stuck in ARGOCD_SYNC_INITIATED state for more than this defined time (in mins)",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CD_FLUX_PIPELINE_STATUS_CRON_TIME",
"EnvType": "string",
"EnvValue": "*/2 * * * *",
"EnvDescription": "Cron time to check the pipeline status for flux cd pipeline",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CD_HELM_PIPELINE_STATUS_CRON_TIME",
"EnvType": "string",
"EnvValue": "*/2 * * * *",
"EnvDescription": "Cron time to check the pipeline status ",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CD_PIPELINE_STATUS_CRON_TIME",
"EnvType": "string",
"EnvValue": "*/2 * * * *",
"EnvDescription": "Cron time for CD pipeline status",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CD_PIPELINE_STATUS_TIMEOUT_DURATION",
"EnvType": "string",
"EnvValue": "20",
"EnvDescription": "Timeout for CD pipeline to get healthy",
"Example": "",
"Deprecated": "false"
},
{
"Env": "DEPLOY_STATUS_CRON_GET_PIPELINE_DEPLOYED_WITHIN_HOURS",
"EnvType": "int",
"EnvValue": "12",
"EnvDescription": "This flag is used to fetch the deployment status of the application. It retrieves the status of deployments that occurred between 12 hours and 10 minutes prior to the current time. It fetches non-terminal statuses.",
"Example": "",
"Deprecated": "false"
},
{
"Env": "DEVTRON_CHART_ARGO_CD_INSTALL_REQUEST_TIMEOUT",
"EnvType": "int",
"EnvValue": "1",
"EnvDescription": "Context timeout for gitops concurrent async deployments",
"Example": "",
"Deprecated": "false"
},
{
"Env": "DEVTRON_CHART_INSTALL_REQUEST_TIMEOUT",
"EnvType": "int",
"EnvValue": "6",
"EnvDescription": "Context timeout for no gitops concurrent async deployments",
"Example": "",
"Deprecated": "false"
},
{
"Env": "EXPOSE_CD_METRICS",
"EnvType": "bool",
"EnvValue": "false",
"EnvDescription": "",
"Example": "",
"Deprecated": "false"
},
{
"Env": "FEATURE_MIGRATE_ARGOCD_APPLICATION_ENABLE",
"EnvType": "bool",
"EnvValue": "false",
"EnvDescription": "enable migration of external argocd application to devtron pipeline",
"Example": "",
"Deprecated": "false"
},
{
"Env": "FEATURE_MIGRATE_FLUX_APPLICATION_ENABLE",
"EnvType": "bool",
"EnvValue": "false",
"EnvDescription": "enable flux application services",
"Example": "",
"Deprecated": "false"
},
{
"Env": "FLUX_CD_PIPELINE_STATUS_CHECK_ELIGIBLE_TIME",
"EnvType": "string",
"EnvValue": "120",
"EnvDescription": "eligible time for checking flux app status periodically and update in db, value is in seconds., default is 120, if wfr is updated within configured time i.e. FLUX_CD_PIPELINE_STATUS_CHECK_ELIGIBLE_TIME then do not include for this cron cycle.",
"Example": "",
"Deprecated": "false"
},
{
"Env": "HELM_PIPELINE_STATUS_CHECK_ELIGIBLE_TIME",
"EnvType": "string",
"EnvValue": "120",
"EnvDescription": "eligible time for checking helm app status periodically and update in db, value is in seconds., default is 120, if wfr is updated within configured time i.e. HELM_PIPELINE_STATUS_CHECK_ELIGIBLE_TIME then do not include for this cron cycle.",
"Example": "",
"Deprecated": "false"
},
{
"Env": "IS_INTERNAL_USE",
"EnvType": "bool",
"EnvValue": "true",
"EnvDescription": "If enabled then cd pipeline and helm apps will not need the deployment app type mandatorily. Couple this flag with HIDE_GITOPS_OR_HELM_OPTION (in Dashborad) and if gitops is configured and allowed for the env, pipeline/ helm app will gitops else no-gitops.",
"Example": "",
"Deprecated": "false"
},
{
"Env": "MIGRATE_DEPLOYMENT_CONFIG_DATA",
"EnvType": "bool",
"EnvValue": "false",
"EnvDescription": "migrate deployment config data from charts table to deployment_config table",
"Example": "",
"Deprecated": "false"
},
{
"Env": "PIPELINE_DEGRADED_TIME",
"EnvType": "string",
"EnvValue": "10",
"EnvDescription": "Time to mark a pipeline degraded if not healthy in defined time",
"Example": "",
"Deprecated": "false"
},
{
"Env": "REVISION_HISTORY_LIMIT_DEVTRON_APP",
"EnvType": "int",
"EnvValue": "1",
"EnvDescription": "Count for devtron application rivision history",
"Example": "",
"Deprecated": "false"
},
{
"Env": "REVISION_HISTORY_LIMIT_EXTERNAL_HELM_APP",
"EnvType": "int",
"EnvValue": "0",
"EnvDescription": "Count for external helm application rivision history",
"Example": "",
"Deprecated": "false"
},
{
"Env": "REVISION_HISTORY_LIMIT_HELM_APP",
"EnvType": "int",
"EnvValue": "1",
"EnvDescription": "To set the history limit for the helm app being deployed through devtron",
"Example": "",
"Deprecated": "false"
},
{
"Env": "REVISION_HISTORY_LIMIT_LINKED_HELM_APP",
"EnvType": "int",
"EnvValue": "15",
"EnvDescription": "",
"Example": "",
"Deprecated": "false"
},
{
"Env": "RUN_HELM_INSTALL_IN_ASYNC_MODE_HELM_APPS",
"EnvType": "bool",
"EnvValue": "false",
"EnvDescription": "",
"Example": "",
"Deprecated": "false"
},
{
"Env": "SHOULD_CHECK_NAMESPACE_ON_CLONE",
"EnvType": "bool",
"EnvValue": "false",
"EnvDescription": "should we check if namespace exists or not while cloning app",
"Example": "",
"Deprecated": "false"
},
{
"Env": "USE_DEPLOYMENT_CONFIG_DATA",
"EnvType": "bool",
"EnvValue": "false",
"EnvDescription": "use deployment config data from deployment_config table",
"Example": "",
"Deprecated": "true"
},
{
"Env": "VALIDATE_EXT_APP_CHART_TYPE",
"EnvType": "bool",
"EnvValue": "false",
"EnvDescription": "validate external flux app chart",
"Example": "",
"Deprecated": "false"
}
]
},
{
"Category": "CI_BUILDX",
"Fields": [
{
"Env": "ASYNC_BUILDX_CACHE_EXPORT",
"EnvType": "bool",
"EnvValue": "false",
"EnvDescription": "To enable async container image cache export",
"Example": "",
"Deprecated": "false"
},
{
"Env": "BUILDX_CACHE_MODE_MIN",
"EnvType": "bool",
"EnvValue": "false",
"EnvDescription": "To set build cache mode to minimum in buildx",
"Example": "",
"Deprecated": "false"
},
{
"Env": "BUILDX_INTERRUPTION_MAX_RETRY",
"EnvType": "int",
"EnvValue": "3",
"EnvDescription": "Maximum number of retries for buildx builder interruption",
"Example": "",
"Deprecated": "false"
},
{
"Env": "BUILDX_BUILDER_POD_WAIT_DURATION_SECS",
"EnvType": "int",
"EnvValue": "120",
"EnvDescription": "Timeout in seconds to wait for buildx k8s driver builder pods to be ready (initial startup and after spot interruption)",
"Example": "",
"Deprecated": "false"
}
]
},
{
"Category": "CI_RUNNER",
"Fields": [
{
"Env": "AZURE_ACCOUNT_KEY",
"EnvType": "string",
"EnvValue": "",
"EnvDescription": "If blob storage is being used of azure then pass the secret key to access the bucket",
"Example": "",
"Deprecated": "false"
},
{
"Env": "AZURE_ACCOUNT_NAME",
"EnvType": "string",
"EnvValue": "",
"EnvDescription": "Account name for azure blob storage",
"Example": "",
"Deprecated": "false"
},
{
"Env": "AZURE_BLOB_CONTAINER_CI_CACHE",
"EnvType": "string",
"EnvValue": "",
"EnvDescription": "Cache bucket name for azure blob storage",
"Example": "",
"Deprecated": "false"
},
{
"Env": "AZURE_BLOB_CONTAINER_CI_LOG",
"EnvType": "string",
"EnvValue": "",
"EnvDescription": "Log bucket for azure blob storage",
"Example": "",
"Deprecated": "false"
},
{
"Env": "AZURE_GATEWAY_CONNECTION_INSECURE",
"EnvType": "bool",
"EnvValue": "true",
"EnvDescription": "Azure gateway connection allows insecure if true",
"Example": "",
"Deprecated": "false"
},
{
"Env": "AZURE_GATEWAY_URL",
"EnvType": "string",
"EnvValue": "http://devtron-minio.devtroncd:9000",
"EnvDescription": "Sent to CI runner for blob",
"Example": "",
"Deprecated": "false"
},
{
"Env": "BASE_LOG_LOCATION_PATH",
"EnvType": "string",
"EnvValue": "/home/devtron/",
"EnvDescription": "Used to store, download logs of ci workflow, artifact",
"Example": "",
"Deprecated": "false"
},
{
"Env": "BLOB_STORAGE_GCP_CREDENTIALS_JSON",
"EnvType": "string",
"EnvValue": "",
"EnvDescription": "GCP cred json for GCS blob storage",
"Example": "",
"Deprecated": "false"
},
{
"Env": "BLOB_STORAGE_PROVIDER",
"EnvType": "",
"EnvValue": "S3",
"EnvDescription": "Blob storage provider name(AWS/GCP/Azure)",
"Example": "",
"Deprecated": "false"
},
{
"Env": "BLOB_STORAGE_S3_ACCESS_KEY",
"EnvType": "string",
"EnvValue": "",
"EnvDescription": "S3 access key for s3 blob storage",
"Example": "",
"Deprecated": "false"
},
{
"Env": "BLOB_STORAGE_S3_BUCKET_VERSIONED",
"EnvType": "bool",
"EnvValue": "true",
"EnvDescription": "To enable buctet versioning for blob storage",
"Example": "",
"Deprecated": "false"
},
{
"Env": "BLOB_STORAGE_S3_ENDPOINT",
"EnvType": "string",
"EnvValue": "",
"EnvDescription": "S3 endpoint URL for s3 blob storage",
"Example": "",
"Deprecated": "false"
},
{
"Env": "BLOB_STORAGE_S3_ENDPOINT_INSECURE",
"EnvType": "bool",
"EnvValue": "false",
"EnvDescription": "To use insecure s3 endpoint",
"Example": "",
"Deprecated": "false"
},
{
"Env": "BLOB_STORAGE_S3_SECRET_KEY",
"EnvType": "string",
"EnvValue": "",
"EnvDescription": "Secret key for s3 blob storage",
"Example": "",
"Deprecated": "false"
},
{
"Env": "BUILDX_CACHE_PATH",
"EnvType": "string",
"EnvValue": "/var/lib/devtron/buildx",
"EnvDescription": "Path for the buildx cache",
"Example": "",
"Deprecated": "false"
},
{
"Env": "BUILDX_K8S_DRIVER_OPTIONS",
"EnvType": "string",
"EnvValue": "",
"EnvDescription": "To enable the k8s driver and pass args for k8s driver in buildx",
"Example": "",
"Deprecated": "false"
},
{
"Env": "BUILDX_PROVENANCE_MODE",
"EnvType": "string",
"EnvValue": "",
"EnvDescription": "provinance is set to true by default by docker. this will add some build related data in generated build manifest.it also adds some unknown:unknown key:value pair which may not be compatible by some container registries. with buildx k8s driver , provinenance=true is causing issue when push manifest to quay registry, so setting it to false",
"Example": "",
"Deprecated": "false"
},
{
"Env": "BUILD_LOG_TTL_VALUE_IN_SECS",
"EnvType": "int",
"EnvValue": "3600",
"EnvDescription": "This is the time that the pods of ci/pre-cd/post-cd live after completion state.",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CACHE_LIMIT",
"EnvType": "int64",
"EnvValue": "5000000000",
"EnvDescription": "Cache limit.",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CD_DEFAULT_ADDRESS_POOL_BASE_CIDR",
"EnvType": "string",
"EnvValue": "",
"EnvDescription": "To pass the IP cidr for Pre/Post cd ",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CD_DEFAULT_ADDRESS_POOL_SIZE",
"EnvType": "int",
"EnvValue": "",
"EnvDescription": "The subnet size to allocate from the base pool for CD",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CD_LIMIT_CI_CPU",
"EnvType": "string",
"EnvValue": "0.5",
"EnvDescription": "CPU Resource Limit Pre/Post CD",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CD_LIMIT_CI_MEM",
"EnvType": "string",
"EnvValue": "3G",
"EnvDescription": "Memory Resource Limit Pre/Post CD",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CD_NODE_LABEL_SELECTOR",
"EnvType": "",
"EnvValue": "",
"EnvDescription": "Node label selector for Pre/Post CD",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CD_NODE_TAINTS_KEY",
"EnvType": "string",
"EnvValue": "dedicated",
"EnvDescription": "Toleration key for Pre/Post CD",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CD_NODE_TAINTS_VALUE",
"EnvType": "string",
"EnvValue": "ci",
"EnvDescription": "Toleration value for Pre/Post CD",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CD_REQ_CI_CPU",
"EnvType": "string",
"EnvValue": "0.5",
"EnvDescription": "CPU Resource Rquest Pre/Post CD",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CD_REQ_CI_MEM",
"EnvType": "string",
"EnvValue": "3G",
"EnvDescription": "Memory Resource Rquest Pre/Post CD",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CD_WORKFLOW_EXECUTOR_TYPE",
"EnvType": "",
"EnvValue": "AWF",
"EnvDescription": "Executor type for Pre/Post CD(AWF,System)",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CD_WORKFLOW_SERVICE_ACCOUNT",
"EnvType": "string",
"EnvValue": "cd-runner",
"EnvDescription": "Service account to be used in Pre/Post CD pod",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CI_DEFAULT_ADDRESS_POOL_BASE_CIDR",
"EnvType": "string",
"EnvValue": "",
"EnvDescription": "To pass the IP cidr for CI",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CI_DEFAULT_ADDRESS_POOL_SIZE",
"EnvType": "int",
"EnvValue": "",
"EnvDescription": "The subnet size to allocate from the base pool for CI",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CI_IGNORE_DOCKER_CACHE",
"EnvType": "bool",
"EnvValue": "",
"EnvDescription": "Ignoring docker cache ",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CI_LOGS_KEY_PREFIX",
"EnvType": "string",
"EnvValue": "",
"EnvDescription": "Prefix for build logs",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CI_NODE_LABEL_SELECTOR",
"EnvType": "",
"EnvValue": "",
"EnvDescription": "Node label selector for CI",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CI_NODE_TAINTS_KEY",
"EnvType": "string",
"EnvValue": "",
"EnvDescription": "Toleration key for CI",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CI_NODE_TAINTS_VALUE",
"EnvType": "string",
"EnvValue": "",
"EnvDescription": "Toleration value for CI",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CI_RUNNER_DOCKER_MTU_VALUE",
"EnvType": "int",
"EnvValue": "-1",
"EnvDescription": "this is to control the bytes of inofrmation passed in a network packet in ci-runner. default is -1 (defaults to the underlying node mtu value)",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CI_SUCCESS_AUTO_TRIGGER_BATCH_SIZE",
"EnvType": "int",
"EnvValue": "1",
"EnvDescription": "this is to control the no of linked pipelines should be hanled in one go when a ci-success event of an parent ci is received",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CI_VOLUME_MOUNTS_JSON",
"EnvType": "string",
"EnvValue": "",
"EnvDescription": "additional volume mount data for CI and JOB",
"Example": "",
"Deprecated": "false"
},
{
"Env": "CI_WORKFLOW_EXECUTOR_TYPE",
"EnvType": "",
"EnvValue": "AWF",
"EnvDescription": "Executor type for CI(AWF,System)",
"Example": "",
"Deprecated": "false"
},
{
"Env": "DEFAULT_ARTIFACT_KEY_LOCATION",
"EnvType": "string",
"EnvValue": "arsenal-v1/ci-artifacts",
"EnvDescription": "Key location for artifacts being created",
"Example": "",
"Deprecated": "false"
},
{
"Env": "DEFAULT_BUILD_LOGS_BUCKET",
"EnvType": "string",
"EnvValue": "devtron-pro-ci-logs",
"EnvDescription": "",
"Example": "",
"Deprecated": "false"
},
{
"Env": "DEFAULT_BUILD_LOGS_KEY_PREFIX",
"EnvType": "string",
"EnvValue": "arsenal-v1",
"EnvDescription": "Bucket prefix for build logs",
"Example": "",
"Deprecated": "false"
},
{
"Env": "DEFAULT_CACHE_BUCKET",
"EnvType": "string",
"EnvValue": "ci-caching",
"EnvDescription": "Bucket name for build cache",
"Example": "",
"Deprecated": "false"
},
{
"Env": "DEFAULT_CACHE_BUCKET_REGION",
"EnvType": "string",
"EnvValue": "us-east-2",
"EnvDescription": "Build Cache bucket region",
"Example": "",
"Deprecated": "false"
},
{
"Env": "DEFAULT_CD_ARTIFACT_KEY_LOCATION",
"EnvType": "string",
"EnvValue": "",
"EnvDescription": "Bucket prefix for build cache",
"Example": "",
"Deprecated": "false"
},
{
"Env": "DEFAULT_CD_LOGS_BUCKET_REGION",
"EnvType": "string",
"EnvValue": "us-east-2",
"EnvDescription": "",
"Example": "",
"Deprecated": "false"
},
{
"Env": "DEFAULT_CD_NAMESPACE",
"EnvType": "string",
"EnvValue": "",
"EnvDescription": "Namespace for devtron stack",
"Example": "",
"Deprecated": "false"
},
{
"Env": "DEFAULT_CD_TIMEOUT",
"EnvType": "int64",
"EnvValue": "3600",
"EnvDescription": "Timeout for Pre/Post-Cd to be completed",
"Example": "",
"Deprecated": "false"
},
{
"Env": "DEFAULT_CI_IMAGE",
"EnvType": "string",
"EnvValue": "686244538589.dkr.ecr.us-east-2.amazonaws.com/cirunner:47",
"EnvDescription": "To pass the ci-runner image",
"Example": "",
"Deprecated": "false"
},
{
"Env": "DEFAULT_NAMESPACE",
"EnvType": "string",
"EnvValue": "devtron-ci",
"EnvDescription": "Timeout for CI to be completed",
"Example": "",
"Deprecated": "false"
},
{
"Env": "DEFAULT_TARGET_PLATFORM",
"EnvType": "string",
"EnvValue": "",
"EnvDescription": "Default architecture for buildx",
"Example": "",
"Deprecated": "false"
},
{
"Env": "DOCKER_BUILD_CACHE_PATH",
"EnvType": "string",
"EnvValue": "/var/lib/docker",
"EnvDescription": "Path to store cache of docker build (/var/lib/docker-> for legacy docker build, /var/lib/devtron-> for buildx)",
"Example": "",
"Deprecated": "false"
},
{
"Env": "ENABLE_BUILD_CONTEXT",
"EnvType": "bool",
"EnvValue": "false",
"EnvDescription": "To Enable build context in Devtron.",
"Example": "",
"Deprecated": "false"
},
{
"Env": "ENABLE_WORKFLOW_EXECUTION_STAGE",
"EnvType": "bool",
"EnvValue": "true",
"EnvDescription": "if enabled then we will display build stages separately for CI/Job/Pre-Post CD",
"Example": "true",
"Deprecated": "false"
},
{
"Env": "EXTERNAL_BLOB_STORAGE_CM_NAME",
"EnvType": "string",
"EnvValue": "blob-storage-cm",
"EnvDescription": "name of the config map(contains bucket name, etc.) in external cluster when there is some operation related to external cluster, for example:-downloading cd artifact pushed in external cluster's env and we need to download from there, downloads ci logs pushed in external cluster's blob",
"Example": "",
"Deprecated": "false"
},
{
"Env": "EXTERNAL_BLOB_STORAGE_SECRET_NAME",
"EnvType": "string",
"EnvValue": "blob-storage-secret",
"EnvDescription": "name of the secret(contains password, accessId,passKeys, etc.) in external cluster when there is some operation related to external cluster, for example:-downloading cd artifact pushed in external cluster's env and we need to download from there, downloads ci logs pushed in external cluster's blob",
"Example": "",
"Deprecated": "false"
},
{
"Env": "EXTERNAL_CD_NODE_LABEL_SELECTOR",
"EnvType": "",
"EnvValue": "",
"EnvDescription": "This is an array of strings used when submitting a workflow for pre or post-CD execution. If the ",
"Example": "",
"Deprecated": "false"
},
{
"Env": "EXTERNAL_CD_NODE_TAINTS_KEY",
"EnvType": "string",
"EnvValue": "dedicated",
"EnvDescription": "",
"Example": "",
"Deprecated": "false"
},
{
"Env": "EXTERNAL_CD_NODE_TAINTS_VALUE",
"EnvType": "string",
"EnvValue": "ci",
"EnvDescription": "",
"Example": "",
"Deprecated": "false"
},
{
"Env": "EXTERNAL_CI_API_SECRET",
"EnvType": "string",
"EnvValue": "devtroncd-secret",
"EnvDescription": "External CI API secret.",
"Example": "",
"Deprecated": "false"
},
{
"Env": "EXTERNAL_CI_PAYLOAD",
"EnvType": "string",
"EnvValue": "{\"ciProjectDetails\":[{\"gitRepository\":\"https://github.com/vikram1601/getting-started-nodejs.git\",\"checkoutPath\":\"./abc\",\"commitHash\":\"239077135f8cdeeccb7857e2851348f558cb53d3\",\"commitTime\":\"2022-10-30T20:00:00\",\"branch\":\"master\",\"message\":\"Update README.md\",\"author\":\"User Name \"}],\"dockerImage\":\"445808685819.dkr.ecr.us-east-2.amazonaws.com/orch:23907713-2\"}",
"EnvDescription": "External CI payload with project details.",
"Example": "",
"Deprecated": "false"
},
{
"Env": "EXTERNAL_CI_WEB_HOOK_URL",
"EnvType": "string",
"EnvValue": "",
"EnvDescription": "default is {{HOST_URL}}/orchestrator/webhook/ext-ci. It is used for external ci.",
"Example": "",
"Deprecated": "false"
},
{
"Env": "IGNORE_CM_CS_IN_CI_JOB",
"EnvType": "bool",
"EnvValue": "false",
"EnvDescription": "Ignore CM/CS in CI-pipeline as Job",
"Example": "",
"Deprecated": "false"
},
{
"Env": "IMAGE_RETRY_COUNT",
"EnvType": "int",
"EnvValue": "0",
"EnvDescription": "push artifact(image) in ci retry count ",
"Example": "",
"Deprecated": "false"
},
{
"Env": "IMAGE_RETRY_INTERVAL",
"EnvType": "int",
"EnvValue": "5",
"EnvDescription": "image retry interval takes value in seconds",
"Example": "",
"Deprecated": "false"
},
{
"Env": "IMAGE_SCANNER_ENDPOINT",
"EnvType": "string",
"EnvValue": "http://image-scanner-new-demo-devtroncd-service.devtroncd:80",
"EnvDescription": "Image-scanner micro-service URL",
"Example": "",
"Deprecated": "false"
},
{
"Env": "IMAGE_SCAN_MAX_RETRIES",
"EnvType": "int",
"EnvValue": "3",
"EnvDescription": "Max retry count for image-scanning",
"Example": "",
"Deprecated": "false"
},
{
"Env": "IMAGE_SCAN_RETRY_DELAY",
"EnvType": "int",
"EnvValue": "5",
"EnvDescription": "Delay for the image-scaning to start",
"Example": "",
"Deprecated": "false"
},
{
"Env": "IN_APP_LOGGING_ENABLED",
"EnvType": "bool",
"EnvValue": "false",
"EnvDescription": "Used in case of argo workflow is enabled. If enabled logs push will be managed by us, else will be managed by argo workflow.",
"Example": "",
"Deprecated": "false"
},
{
"Env": "MAX_CD_WORKFLOW_RUNNER_RETRIES",
"EnvType": "int",
"EnvValue": "0",
"EnvDescription": "Maximum time pre/post-cd-workflow create pod if it fails to complete",
"Example": "",
"Deprecated": "false"
},
{
"Env": "MAX_CI_WORKFLOW_RETRIES",
"EnvType": "int",
"EnvValue": "0",
"EnvDescription": "Maximum time CI-workflow create pod if it fails to complete",
"Example": "",
"Deprecated": "false"
},
{
"Env": "MODE",
"EnvType": "string",
"EnvValue": "DEV",
"EnvDescription": "",
"Example": "",
"Deprecated": "false"
},
{
"Env": "NATS_SERVER_HOST",
"EnvType": "string",
"EnvValue": "localhost:4222",
"EnvDescription": "",
"Example": "",
"Deprecated": "false"
},
{
"Env": "ORCH_HOST",
"EnvType": "string",
"EnvValue": "http://devtroncd-orchestrator-service-prod.devtroncd/webhook/msg/nats",
"EnvDescription": "Orchestrator micro-service URL ",
"Example": "",
"Deprecated": "false"
},
{
"Env": "ORCH_TOKEN",
"EnvType": "string",
"EnvValue": "",
"EnvDescription": "Orchestrator token",
"Example": "",
"Deprecated": "false"
},
{
"Env": "PRE_CI_CACHE_PATH",
"EnvType": "string",
"EnvValue": "/devtroncd-cache",
"EnvDescription": "Cache path for Pre CI tasks",
"Example": "",
"Deprecated": "false"
},
{
"Env": "SHOW_DOCKER_BUILD_ARGS",
"EnvType": "bool",
"EnvValue": "true",
"EnvDescription": "To enable showing the args passed for CI in build logs",
"Example": "",
"Deprecated": "false"
},
{
"Env": "SKIP_CI_JOB_BUILD_CACHE_PUSH_PULL",
"EnvType": "bool",
"EnvValue": "false",
"EnvDescription": "To skip cache Push/Pull for ci job",
"Example": "",
"Deprecated": "false"
},
{
"Env": "SKIP_CREATING_ECR_REPO",
"EnvType": "bool",
"EnvValue": "false",
"EnvDescription": "By disabling this ECR repo won't get created if it's not available on ECR from build configuration",
"Example": "",
"Deprecated": "false"
},
{
"Env": "TERMINATION_GRACE_PERIOD_SECS",
"EnvType": "int",
"EnvValue": "180",
"EnvDescription": "this is the time given to workflow pods to shutdown. (grace full termination time)",
"Example": "",
"Deprecated": "false"
},
{
"Env": "USE_ARTIFACT_LISTING_QUERY_V2",
"EnvType": "bool",
"EnvValue": "true",
"EnvDescription": "To use the V2 query for listing artifacts",
"Example": "",
"Deprecated": "false"
},
{
"Env": "USE_BLOB_STORAGE_CONFIG_IN_CD_WORKFLOW",
"EnvType": "bool",
"EnvValue": "true",
"EnvDescription": "To enable blob storage in pre and post cd",
"Example": "",
"Deprecated": "false"
},
{
"Env": "USE_BLOB_STORAGE_CONFIG_IN_CI_WORKFLOW",
"EnvType": "bool",
"EnvValue": "true",
"EnvDescription": "To enable blob storage in pre and post ci",
"Example": "",
"Deprecated": "false"
},
{
"Env": "USE_BUILDX",
"EnvType": "bool",
"EnvValue": "false",
"EnvDescription": "To enable buildx feature globally",
"Example": "",
"Deprecated": "false"
},
{
"Env": "USE_DOCKER_API_TO_GET_DIGEST",
"EnvType": "bool",
"EnvValue": "false",
"EnvDescription": "when user do not pass the digest then this flag controls , finding the image digest using docker API or not. if set to true we get the digest from docker API call else use docker pull command. [logic in ci-runner]",
"Example": "",
"Deprecated": "false"
},
{
"Env": "USE_EXTERNAL_NODE",
"EnvType": "bool",
"EnvValue": "false",
"EnvDescription": "It is used in case of Pre/ Post Cd with run in application mode. If enabled the node lebels are read from EXTERNAL_CD_NODE_LABEL_SELECTOR else from CD_NODE_LABEL_SELECTOR MODE: if the vale is DEV, it will read the local kube config file or else from the cluser location.",
"Example": "",
"Deprecated": "false"
},
{
"Env": "USE_IMAGE_TAG_FROM_GIT_PROVIDER_FOR_TAG_BASED_BUILD",
"EnvType": "bool",
"EnvValue": "false",
"EnvDescription": "To use the same tag in container image as that of git tag",
"Example": "",
"Deprecated": "false"
},
{
"Env": "WF_CONTROLLER_INSTANCE_ID",
"EnvType": "string",
"EnvValue": "devtron-runner",
"EnvDescription": "Workflow controller instance ID.",
"Example": "",
"Deprecated": "false"
},
{
"Env": "WORKFLOW_CACHE_CONFIG",
"EnvType": "string",
"EnvValue": "{}",
"EnvDescription": "flag is used to configure how Docker caches are handled during a CI/CD ",
"Example": "",
"Deprecated": "false"
},
{
"Env": "WORKFLOW_SERVICE_ACCOUNT",
"EnvType": "string",
"EnvValue": "ci-runner",
"EnvDescription": "",
"Example": "",
"Deprecated": "false"
}
]
},
{
"Category": "DEVTRON",
"Fields": [
{
"Env": "-",
"EnvType": "",
"EnvValue": "",
"EnvDescription": "",
"Example": "",
"Deprecated": "false"
},
{
"Env": "ADDITIONAL_NODE_GROUP_LABELS",
"EnvType": "",
"EnvValue": "",
"EnvDescription": "Add comma separated list of additional node group labels to default labels",
"Example": "karpenter.sh/nodepool,cloud.google.com/gke-nodepool",
"Deprecated": "false"
},
{
"Env": "APP_SYNC_IMAGE",
"EnvType": "string",
"EnvValue": "quay.io/devtron/chart-sync:1227622d-132-3775",
"EnvDescription": "For the app sync image, this image will be used in app-manual sync job",