-
Notifications
You must be signed in to change notification settings - Fork 190
/
values.schema.json
2558 lines (2558 loc) · 111 KB
/
values.schema.json
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
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"description": "Default values for atlantis. Declare variables to be passed into your templates.",
"type": "object",
"additionalProperties": false,
"properties": {
"global": {
"description": "Global values applied to all charts",
"type": "object",
"additionalProperties": true
},
"fullnameOverride": {
"description": "Provide a name to substitute for the full names of resources.",
"type": "string",
"default": ""
},
"nameOverride": {
"description": "Provide a name to substitute for the name of the chart.",
"type": "string",
"default": ""
},
"atlantisUrl": {
"description": "The URL at which Atlantis will be available. This is used to set the webhook URL in GitHub.",
"type": "string",
"default": "",
"examples": [
"https://atlantis.example.com"
]
},
"orgAllowlist": {
"type": "string",
"default": "<replace-me>",
"description": "Replace this with your own repo allowlist.",
"examples": [
"github.com/myorg/*"
]
},
"orgWhitelist": {
"type": "string",
"default": "<replace-me>",
"description": "Deprecated in favor of orgAllowlist.",
"examples": [
"github.com/myorg/*"
]
},
"logLevel": {
"type": "string",
"description": "Level to use for logging. Either debug, info, warn, or error.",
"enum": [
"",
"debug",
"info",
"warn",
"error"
],
"examples": [
"debug"
]
},
"github": {
"type": "object",
"description": "GitHub settings",
"properties": {
"user": {
"type": "string",
"description": "Name of the Atlantis GitHub user."
},
"token": {
"type": "string",
"description": "Name of the Atlantis GitHub user."
},
"secret": {
"type": "string",
"description": "Repository or organization-wide webhook secret for the Atlantis GitHub integration. All repositories in GitHub that are to be integrated with Atlantis must share the same value."
},
"hostname": {
"type": "string",
"description": "Hostname of your GitHub Enterprise installation."
}
},
"additionalProperties": false
},
"githubApp": {
"type": "object",
"description": "GitHub App settings",
"properties": {
"id": {
"type": [
"integer",
"string"
],
"description": "GitHub app ID. If set, GitHub authentication will be performed as an [installation](https://developer.github.com/v3/apps/installations/)."
},
"installationId": {
"type": [
"integer",
"string"
],
"description": "GitHub app installationId. If set, GitHub authentication will be performed as an [installation](https://developer.github.com/v3/apps/installations/)."
},
"slug": {
"type": "string",
"description": "A slugged version of GitHub app name shown in pull requests comments, etc (not Atlantis App but something like atlantis-app). Atlantis uses the value of this parameter to identify the comments it has left on GitHub pull requests. This is used for functions such as `hidePrevPlanComments`."
},
"key": {
"type": "string",
"description": "A GitHub App PEM encoded private key file. If set, GitHub authentication will be performed as an [installation]((https://developer.github.com/v3/apps/installations/))."
},
"secret": {
"type": "string",
"description": "Secret used to validate GitHub webhooks (see [Securing your webhooks](https://developer.github.com/webhooks/securing/))."
}
},
"additionalProperties": false
},
"gitea": {
"type": "object",
"description": "Gitea settings",
"properties": {
"user": {
"type": "string",
"description": "Name of the Atlantis Gitea user."
},
"token": {
"type": "string",
"description": "Access token of the Atlantis Gitea user."
},
"secret": {
"type": "string",
"description": "Webhook secret for the Atlantis Gitea integration. All repositories in Gitea that are to be integrated with Atlantis must share the same value."
},
"baseUrl": {
"type": "string",
"description": "Base URL of your Gitea installation."
}
},
"additionalProperties": false
},
"gitlab": {
"type": "object",
"description": "GitLab settings",
"properties": {
"user": {
"type": "string",
"description": "Name of the Atlantis GitLab user."
},
"token": {
"type": "string",
"description": "Personal access token for the Atlantis GitLab user."
},
"secret": {
"type": "string",
"description": "Webhook secret for the Atlantis GitLab integration. All repositories in GitLab that are to be integrated with Atlantis must share the same value."
},
"hostname": {
"type": "string",
"description": "Hostname of your GitLab Enterprise installation."
}
},
"additionalProperties": false
},
"bitbucket": {
"type": "object",
"description": "Bitbucket settings",
"properties": {
"user": {
"type": "string",
"description": "Name of the Atlantis Bitbucket user."
},
"token": {
"type": "string",
"description": "Personal access token for the Atlantis Bitbucket user."
},
"secret": {
"type": "string",
"description": "Webhook secret for Bitbucket repositories (Bitbucket Server only)."
},
"baseURL": {
"type": "string",
"description": "Base URL of Bitbucket Server installation."
}
},
"additionalProperties": false
},
"azuredevops": {
"type": "object",
"description": "Azure DevOps settings",
"properties": {
"user": {
"type": "string",
"description": "Name of the Atlantis Azure DevOps user."
},
"token": {
"type": "string",
"description": "Personal access token for the Atlantis Azure DevOps user."
},
"webhookUser": {
"type": "string",
"description": "Webhook user for the Atlantis Azure DevOps integration."
},
"webhookPassword": {
"type": "string",
"description": "Webhook password for the Atlantis Azure DevOps integration. All repositories in Azure DevOps that are to be integrated with Atlantis must share the same value."
}
},
"additionalProperties": false
},
"vcsSecretName": {
"type": "string",
"description": "Name of a pre-existing Kubernetes `Secret` containing `token` and `secret` keys set to your VCS provider's API token and webhook secret, respectively. Use this instead of `github.token`/`github.secret`, etc. (optional)"
},
"gitconfig": {
"type": "string",
"description": "Contents of a file to be mounted to `~/.gitconfig`. Use to allow redirection for Terraform modules in private git repositories."
},
"gitconfigReadOnly": {
"type": "boolean",
"default": "true",
"description": "When true gitconfig file is mounted as read only. When false, the gitconfig value will be copied to '/home/atlantis/.gitconfig' before starting the atlantis process instead of being mounted as a file."
},
"gitconfigSecretName": {
"type": "string",
"description": "Name of a pre-existing Kubernetes `Secret` containing a `gitconfig` key. Use this instead of `gitconfig` (optional)"
},
"netrc": {
"type": "string",
"description": "Contents of a file to be mounted to `~/.netrc`. Use to authenticate with private registries hosting terraform modules."
},
"netrcSecretName": {
"type": "string",
"description": "Name of a pre-existing Kubernetes `Secret` containing a `netrc` key. Use this instead of `netrc` (optional)"
},
"aws": {
"type": "object",
"description": "AWS settings",
"properties": {
"credentials": {
"type": "string",
"description": "Contents of a file to be mounted to `~/.aws/credentials` `aws.directory/credentials`."
},
"config": {
"type": "string",
"description": "Contents of a file to be mounted to `~/.aws/config` or `aws.directory/config`."
},
"directory": {
"type": "string",
"description": "If set, will mount AWS credentials to the specified path and set `AWS_SHARED_CREDENTIALS_FILE` and `AWS_CONFIG_FILE` variables. If not set, default path `/home/atlantis/.aws` will be used."
}
},
"additionalProperties": false
},
"awsSecretName": {
"type": "string",
"description": "Secret name containing AWS credentials - will override aws.credentials and aws.config. Will be used a volume mount on `$HOME/.aws` or `aws.directory`, so it needs a `credentials` key. The key `config` is optional. See the file `templates/secret-aws.yml` for more info on the Secret contents."
},
"serviceAccountSecrets": {
"type": "object",
"description": "Deprecated (see googleServiceAccountSecrets). To be used for mounting credential files (when using google provider).",
"properties": {
"credentials": {
"type": "string",
"description": "Deprecated (see googleServiceAccountSecrets) JSON string representing secrets for a Google Cloud Platform production service account. Only applicable if hosting Atlantis on GKE."
},
"credentials-staging": {
"type": "string",
"description": "Deprecated (see googleServiceAccountSecrets) JSON string representing secrets for a Google Cloud Platform staging service account. Only applicable if hosting Atlantis on GKE."
}
}
},
"image": {
"type": "object",
"description": "Atlantis image configuration.",
"properties": {
"repository": {
"description": "image repository.",
"type": "string",
"default": "ghcr.io/runatlantis/atlantis"
},
"tag": {
"description": "image tag. if not set appVersion field from Chart.yaml is used",
"type": [
"string",
"null"
],
"default": ""
},
"pullPolicy": {
"description": "image pull policy.",
"type": "string",
"enum": [
"Always",
"Never",
"IfNotPresent"
],
"default": "Always"
}
},
"additionalProperties": false
},
"imagePullSecrets": {
"type": "array",
"description": "List of secrets for pulling images from private registries.",
"items": {
"type": "string"
}
},
"config": {
"type": "string",
"description": "Override atlantis main configuration by config map. It's allow some additional functionality like slack notifications."
},
"repoConfig": {
"type": "string",
"description": "[Server-side Repository Configuration](https://www.runatlantis.io/docs/server-side-repo-config.html) as a raw YAML string. Configuration is stored in ConfigMap."
},
"allowForkPRs": {
"type": "boolean",
"description": "Allow atlantis to run on fork Pull Requests",
"default": false
},
"allowDraftPRs": {
"type": "boolean",
"description": "Allow atlantis to run on draft Pull Requests",
"default": false
},
"hidePrevPlanComments": {
"type": "boolean",
"description": "Allow atlantis to hide previous plan comments",
"default": false
},
"hideUnchangedPlanComments": {
"type": "boolean",
"description": "Allow atlantis to hide no-changes plan comments",
"default": false
},
"defaultTFDistribution": {
"type": "string",
"description": "Default Atlantis distribution to be used by atlantis server. Either opentofu or terraform",
"default": "terraform",
"enum": [
"terraform",
"opentofu"
]
},
"defaultTFVersion": {
"type": "string",
"description": "Default Terraform version to be used by atlantis server"
},
"disableApply": {
"type": "boolean",
"description": "Disables running `atlantis apply` regardless of what options are specified",
"default": false
},
"disableApplyAll": {
"type": "boolean",
"description": "Disables running `atlantis apply` regardless of what options are specified",
"default": false
},
"disableRepoLocking": {
"type": "boolean",
"description": "Stops atlantis locking projects and or workspaces when running terraform",
"default": false
},
"enableDiffMarkdownFormat": {
"type": "boolean",
"description": "Enable Atlantis to format Terraform plan output into a markdown-diff friendly format for color-coding purposes.",
"default": false
},
"basicAuth": {
"type": "object",
"description": "Basic auth settings",
"properties": {
"username": {
"type": "string",
"description": "Username for basic authentication"
},
"password": {
"type": "string",
"description": "Password for basic authentication"
}
},
"additionalProperties": false
},
"api": {
"type": "object",
"description": "API settings",
"properties": {
"secret": {
"type": "string",
"description": "API secret to enable API endpoints"
}
},
"additionalProperties": false
},
"basicAuthSecretName": {
"type": "string",
"description": "Name of a pre-existing Kubernetes `Secret` containing `username` and `password` keys for basic auth credentials. Use this instead of `basicAuth.username`/`basicAuth.password`"
},
"apiSecretName": {
"type": "string",
"description": "Name of a pre-existing Kubernetes `Secret` containing a `apisecret` key. Use this instead of `api.secret`"
},
"command": {
"type": "array",
"description": "Override the command field of the Atlantis container"
},
"commonLabels": {
"type": "object",
"description": "Add Common Labels to all resources",
"additionalProperties": true
},
"livenessProbe": {
"type": "object",
"description": "Liveness probe configuration for atlantis containers.",
"additionalProperties": false,
"properties": {
"enabled": {
"description": "Enable liveness probe.",
"type": "boolean",
"default": true
},
"periodSeconds": {
"description": "How often (in seconds) to perform the probe. Minimum value is 1.",
"type": "integer",
"default": 60
},
"initialDelaySeconds": {
"description": "Number of seconds after the container has started before liveness probes are initiated.",
"type": "integer",
"default": 5
},
"timeoutSeconds": {
"description": "Number of seconds after which the probe times out. Minimum value is 1 seconds.",
"type": "integer",
"default": 5
},
"successThreshold": {
"description": "Number of consecutive successful probe executions required for the container to be considered healthy again after having failed.",
"type": "integer",
"default": 1
},
"failureThreshold": {
"description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Minimum value is 1.",
"type": "integer",
"default": 5
},
"scheme": {
"description": "The URI scheme used for the request. The only supported schemes are http and https.",
"type": "string",
"default": "HTTP",
"enum": [
"HTTP",
"HTTPS"
]
}
}
},
"readinessProbe": {
"type": "object",
"description": "Readiness probe configuration for atlantis containers.",
"additionalProperties": false,
"properties": {
"enabled": {
"description": "Enable readiness probe.",
"type": "boolean",
"default": true
},
"periodSeconds": {
"description": "How often (in seconds) to perform the probe. Minimum value is 1.",
"type": "integer",
"default": 60
},
"initialDelaySeconds": {
"description": "Number of seconds after the container has started before readiness probes are initiated.",
"type": "integer",
"default": 5
},
"timeoutSeconds": {
"description": "Number of seconds after which the probe times out. Minimum value is 1 seconds.",
"type": "integer",
"default": 5
},
"successThreshold": {
"description": "Number of consecutive successful probe executions required for the container to be considered healthy again after having failed.",
"type": "integer",
"default": 1
},
"failureThreshold": {
"description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Minimum value is 1.",
"type": "integer",
"default": 5
},
"scheme": {
"description": "The URI scheme used for the request. The only supported schemes are http and https.",
"type": "string",
"default": "HTTP",
"enum": [
"HTTP",
"HTTPS"
]
}
}
},
"service": {
"description": "Atlantis Service configuration.",
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"description": "Service type.",
"type": "string",
"default": "NodePort",
"enum": [
"ClusterIP",
"NodePort",
"LoadBalancer"
]
},
"annotations": {
"description": "Annotations to add to the service.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"port": {
"description": "Port to expose on the service.",
"type": [
"string",
"integer"
],
"default": 80
},
"portName": {
"description": "Port name to expose on the service.",
"type": [
"string"
],
"default": "atlantis"
},
"nodePort": {
"description": "Port to expose on the node when the service type is NodePort.",
"type": [
"string",
"integer",
"null"
]
},
"targetPort": {
"description": "Port on the container to direct traffic to.",
"type": [
"string",
"integer"
],
"default": 4141
},
"externalTrafficPolicy": {
"description": "externalTrafficPolicy to set on service.",
"type": [
"string",
"null"
]
},
"loadBalancerIP": {
"description": "IP address to assign to load balancer (if supported).",
"type": [
"string",
"null"
]
},
"loadBalancerSourceRanges": {
"description": "If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature.",
"type": [
"array",
"null"
]
}
}
},
"podTemplate": {
"description": "Pod template configuration for pods.",
"type": "object",
"additionalProperties": false,
"properties": {
"annotations": {
"description": "Additional annotations to use for pods.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"labels": {
"description": "Additional labels to use for pods.",
"type": "object",
"additionalProperties": {
"type": "string"
}
}
}
},
"statefulSet": {
"description": "StatefulSet configuration.",
"type": "object",
"additionalProperties": false,
"properties": {
"annotations": {
"description": "Additional annotations to use for StatefulSet.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"labels": {
"description": "Additional labels to use for StatefulSet.",
"type": "object",
"default": {},
"additionalProperties": {
"type": "string"
}
},
"securityContext": {
"type": "object",
"description": "Allow customizing securityContext.",
"$ref": "#/definitions/io.k8s.api.core.v1.PodSecurityContext"
},
"priorityClassName": {
"description": "Leverage a PriorityClass to ensure your pods survive resource shortages.",
"type": "string"
},
"updateStrategy": {
"type": "object",
"description": "Configure [updateStrategy](https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies) of the StatefulSet.",
"$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetUpdateStrategy"
},
"shareProcessNamespace": {
"type": "boolean",
"default": false,
"description": "Share the process namespace between all containers in a pod."
}
}
},
"terminationGracePeriodSeconds": {
"type": [
"integer",
"null"
],
"description": "Set terminationGracePeriodSeconds for the StatefulSet."
},
"ingress": {
"type": "object",
"description": "Ingress configuration.",
"properties": {
"enabled": {
"type": "boolean",
"description": "Whether to create a Kubernetes Ingress.",
"default": true
},
"ingressClassName": {
"type": [
"string",
"null"
],
"default": null,
"description": "Name of the ingress class to use for the Ingress."
},
"apiVersion": {
"type": "string",
"description": "The Kubernetes API version used for configuring ingress. If not specified, Helm tries to automatically determine a compatible version based on the cluster's capabilities. The default value is \"\" and is only accepted if it is one of the supported versions: `networking.k8s.io/v1`, `networking.k8s.io/v1beta1`, or `extensions/v1beta1`. In cases where Helm can't determine the cluster's capabilities automatically, this value can be used to override the API version. Setting an unsupported value will result in an error during the Helm chart installation.",
"default": ""
},
"annotations": {
"type": "object",
"description": "Additional annotations to use for the Ingress.",
"additionalProperties": {
"type": "string"
},
"labels": {
"type": "object",
"description": "Additional labels to use for the Ingress.",
"additionalProperties": {
"type": "string"
}
},
"path": {
"type": "string",
"description": "Path to use in the `Ingress`. Should be set to `/*` if using gce-ingress in Google Cloud.",
"default": "/*"
},
"paths": {
"type": "array",
"description": "collection of paths that map requests to backends.",
"items": {
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "path is matched against the path of an incoming request"
},
"service": {
"type": "string",
"description": "service references a service as a backend."
},
"port": {
"type": [
"integer",
"null"
],
"description": "backend defines the referenced service endpoint to which the traffic will be forwarded to"
}
}
}
},
"pathType": {
"type": "string",
"description": "pathType to use in the `Ingress`. specify how Ingress paths should be matched. See [Kubernetes docs](https://kubernetes.io/docs/concepts/services-networking/ingress/#path-types) for details.",
"default": "ImplementationSpecific"
},
"host": {
"type": [
"string",
"null"
],
"description": "Domain name Kubernetes Ingress rule looks for. Set it to the domain Atlantis will be hosted on.",
"default": null
},
"hosts": {
"type": [
"array",
"null"
],
"description": "An array of hosts to expose (optional)",
"items": {
"type": "object",
"properties": {
"host": {
"type": "string",
"description": "List of domain names Kubernetes Ingress rule looks for. Set it to the domains in which Atlantis will be hosted on."
},
"paths": {
"type": "array",
"description": "List of paths to use in Kubernetes Ingress rules. Should be set to `/*` if using gce-ingress in Google",
"items": {
"type": "string"
}
},
"service": {
"type": "string",
"description": "service references a service as a backend."
}
}
}
},
"tls": {
"type": "array",
"description": "Kubernetes tls block. See [Kubernetes docs](https://kubernetes.io/docs/concepts/services-networking/ingress/#tls) for details.",
"items": {
"type": "object",
"properties": {
"secretName": {
"type": "string",
"description": "The name of the secret containing the TLS certificate and key"
},
"hosts": {
"type": "array",
"description": "An array of hosts to use TLS for",
"items": {
"type": "string",
"description": "The host to use TLS for"
}
}
}
}
}
}
}
},
"webhook_ingress": {
"$ref": "#/properties/ingress"
},
"customPem": {
"type": "string",
"description": "SecretName of the custom `ca-certificates.cert` to override the `/etc/ssl/certs/ca-certificates.crt` with your custom one (self-signed certificates)<br>Secret has to be created manually and shall contain `ca-certificates.crt: PEM`"
},
"resources": {
"type": "object",
"description": "Resource configuration for atlantis containers.",
"$ref": "#/definitions/io.k8s.api.core.v1.ResourceRequirements"
},
"atlantisDataDirectory": {
"type": "string",
"description": "Directory to store atlantis data.",
"default": "/atlantis-data"
},
"volumeClaim": {
"type": "object",
"description": "VolumeClaim configuration for atlantis data.",
"properties": {
"enabled": {
"type": "boolean",
"description": "Activate embedded volume claim for Atlantis' data directory (mostly used to check out git repositories)."
},
"dataStorage": {
"type": "string",
"description": "Amount of storage available for embedded Atlantis' data directory"
},
"accessModes": {
"type": "array",
"description": "Array of requested access modes for the volume.",
"items": {
"type": "string",
"description": "The access mode to be requested."
}
},
"storageClassName": {
"type": "string",
"description": "Storage class of the embedded volume mounted for the Atlantis data directory."
}
}
},
"dataStorage": {
"type": "string",
"description": "DEPRECATED - Amount of storage available for Atlantis' data directory (mostly used to check out git repositories)."
},
"storageClassName": {
"type": "string",
"description": "DEPRECATED - Storage class of the volume mounted for the Atlantis data directory."
},
"replicaCount": {
"type": "integer",
"description": "Number of replicas to run for the Atlantis server.",
"default": 1
},
"test": {
"type": "object",
"description": "Test configuration for atlantis containers.",
"properties": {
"enabled": {
"type": "boolean",
"description": "Whether to enable the test"
},
"image": {
"type": "string",
"description": "The image to use for testing"
},
"imageTag": {
"type": "string",
"description": "The tag of the image to use for testing"
},
"annotations": {
"type": "object",
"description": "Annotations to apply to the test pod (optional)",
"additionalProperties": {
"type": "string"
}
}
},
"additionalProperties": false
},
"nodeSelector": {
"type": "object",
"description": "NodeSelector configuration for atlantis containers.",
"additionalProperties": {
"type": "string"
}
},
"tolerations": {
"description": "Specify Tolerations for all pods.",
"type": "array",
"default": [],
"items": {
"type": "object",
"$ref": "#/definitions/io.k8s.api.core.v1.Toleration"
}
},
"affinity": {
"description": "Specify Affinity for all pods.",
"type": "object",
"default": "{}",
"$ref": "#/definitions/io.k8s.api.core.v1.Affinity"
},
"topologySpreadConstraints": {
"description": "Specify topology spread constraints for all pods.",
"type": "array",
"default": [],
"items": {
"type": "object",
"$ref": "#/definitions/io.k8s.api.core.v1.TopologySpreadConstraint"
}
},
"serviceAccount": {
"type": "object",
"description": "ServiceAccount configuration for atlantis containers.",
"properties": {
"create": {
"type": "boolean",
"description": "Whether to create a Kubernetes ServiceAccount if no account matching `serviceAccount.name` exists."
},
"mount": {
"type": "boolean",
"description": "Whether to mount the Kubernetes ServiceAccount into the pod"
},
"name": {
"type": [
"string",
"null"
],
"description": "Name of the Kubernetes ServiceAccount under which Atlantis should run. If no value is specified and `serviceAccount.create` is `true`, Atlantis will be run under a ServiceAccount whose name is the FullName of the Helm chart's instance, else Atlantis will be run under the `default` ServiceAccount."
},
"annotations": {
"type": "object",
"description": "Additional Service Account annotations",
"additionalProperties": {
"type": "string"
}
}
},
"additionalProperties": false
},
"enableKubernetesBackend": {
"type": "boolean",
"description": "Deploy rbac to allow for the serviceAccount to manage terraform state via a kubernetes backend",
"default": false
},
"tlsSecretName": {
"type": "string",
"description": "Name of a Secret for Atlantis' HTTPS certificate containing the following data items `tls.crt` with the public certificate and `tls.key` with the private key."
},
"extraPath": {
"type": "string",
"description": "Additional paths that will be appended to the system `PATH` environment variable. These paths should be separated with `:` to match system notation."
},
"environment": {
"type": "object",
"description": "Map of environment variables for the container.",
"additionalProperties": {
"type": [
"string",
"integer",
"boolean"
]
}
},
"environmentSecrets": {
"type": "array",
"description": "Array of Kubernetes secrets that can be used to set environment variables. See `values.yaml` for example.",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the environment variable."
},
"secretKeyRef": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the Kubernetes secret."
},
"key": {
"type": "string",
"description": "The key of the value in the Kubernetes secret that should be used to populate the environment variable."
}
},
"required": [
"name",
"key"
]
}
},
"required": [
"name",
"secretKeyRef"
]
}
},
"environmentRaw": {
"type": "array",
"description": "Array environment variables in plain Kubernetes yaml format. See `values.yaml` for example.",
"items": {
"type": "object"
}
},
"loadEnvFromSecrets": {
"type": "array",
"description": "Array of Kubernetes secrets to set all key-value pairs as environment variables. See `values.yaml` for example.",
"items": {
"type": "string"
}
},
"loadEnvFromConfigMaps": {
"type": "array",
"description": "Array of Kubernetes `ConfigMap`s to set all key-value pairs as environment variables. See `values.yaml` for example.",
"items": {
"type": "string"
}
},
"googleServiceAccountSecrets": {
"type": "array",
"description": "An array of Kubernetes secrets containing Google Service Account credentials. See `values.yaml` for examples and additional documentation.",
"items": {