forked from concourse/concourse-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
3086 lines (2532 loc) · 89.2 KB
/
values.yaml
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
## Default values for Concourse Helm Chart.
## This is a YAML-formatted file.
## Declare variables to be passed into your templates.
## Provide a name in place of `concourse` for `app:` labels
##
nameOverride:
## Provide a name to substitute for the full names of resources
## ps.: You should also change the postgresql.fullnameOverride if you're using
## that chart dependency
##
fullnameOverride:
## Concourse image to use in both Web and Worker containers.
##
image: concourse/concourse
## Concourse image tag.
## ps.: release candidates are published under `concourse/concourse-rc` instead
## of `concourse/concourse`.
## Ref: https://hub.docker.com/r/concourse/concourse/tags/
##
imageTag: "7.8.3"
## Specific image digest to use in place of a tag.
## Ref: https://kubernetes.io/docs/concepts/configuration/overview/#container-images
##
imageDigest:
## Specify a imagePullPolicy regarding the fetching of container images.
## Ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
##
imagePullPolicy: IfNotPresent
## Array of imagePullSecrets to allow pulling the Concourse image from private registries.
## ps.: secrets must be manually created in the namespace.
## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
##
## Example:
##
## imagePullSecrets:
## - myRegistryKeySecretName
##
imagePullSecrets: []
## Configuration values for the Concourse application (worker and web components).
## The values specified here are almost direct references to the flags under the
## `concourse web` and `concourse worker` commands.
##
concourse:
## Configurations for the `web` component based on the possible flags configurable
## through the `concourse web` command.
##
web:
## A name for this Concourse cluster, to be displayed on the dashboard page.
##
clusterName:
## Enable this flag in order to customize the `client_id` and
## `client_secret` used when logging into the Concourse UI.
##
## Enabling this requires setting `secrets.clientId` and #
## `secrets.clientSecret` (or filling the equivalent fields in the Secret).
##
clientConfig:
enabled: false
## Interval on which runners are kicked off for builds, locks, scans, and
## checks.
##
## Example: 10s
##
componentRunnerInterval:
## Default timeout of a get step.
##
## Example: 10m
##
defaultGetTimeout:
## Default timeout of a put step.
##
## Example: 30m
##
defaultPutTimeout:
## Default timeout of a task step.
##
## Example: 8h
##
defaultTaskTimeout:
## The maximum number of open connections for the API connection pool.
##
apiMaxConns:
## The maximum number of open connections for the backend connection pool.
##
backendMaxConns:
## Enable equivalent resources across pipelines and teams to share a single version history.
## Ref: https://concourse-ci.org/global-resources.html
##
enableGlobalResources: true
## Enable automatic rerunning of builds when worker disappears.
##
enableBuildRerunWhenWorkerDisappears: false
## Enable the experimental across step to be used in jobs. The API is subject to change.
##
enableAcrossStep: false
## Enable the creation of instanced pipelines.
##
enablePipelineInstances: false
## Enable P2P volume streaming between all wokrers.
## By default all volume streming goes through the web nodes.
## NOTE: All workers must be on the same LAN network.
##
enablep2pVolumeStreaming: false
## Enable caching streamed resource volumes on the destination worker.
##
enableCacheStreamedVolumes: false
## Enable web UI and API endpoint for resource causality.
##
enableResourceCausality: false
## Maximum number of jobs to be scheduling at the same time.
##
jobSchedulingMaxInFlight:
## Interval on which the resource scanner will run to see if new checks need
## to be scheduled.
##
lidarScannerInterval:
## Limit the number of concurrent requests to an API endpoint.
##
## Example:
## ListAllJobs: 5
##
concurrentRequestLimits:
## Enable auditing for all api requests connected to builds.
##
enableBuildAuditing: false
## Enable auditing for all api requests connected to containers.
##
enableContainerAuditing: false
## Enable auditing for all api requests connected to jobs.
##
enableJobAuditing: false
## Enable auditing for all api requests connected to pipelines.
##
enablePipelineAuditing: false
## Enable auditing for all api requests connected to resources.
##
enableResourceAuditing: false
## Enable auditing for all api requests connected to system transactions.
##
enableSystemAuditing: false
## Enable auditing for all api requests connected to teams.
##
enableTeamAuditing: false
## Enable auditing for all api requests connected to workers.
##
enableWorkerAuditing: false
## Enable auditing for all api requests connected to volumes.
##
enableVolumeAuditing: false
## Enable redacting secrets in build logs.
##
enableRedactSecrets:
## The number of attempts secret will be retried to be fetched,
## in case a retryable error happens.
##
secretRetryAttempts: 5
## The interval between secret retry retieval attempts.
##
secretRetryInterval: 1s
## Enable in-memory cache for secrets.
##
secretCacheEnabled: false
## If the cache is enabled, secret values will be cached for not longer
## than this duration (it can be less, if underlying secret lease time
## is smaller).
##
secretCacheDuration:
## If the cache is enabled, secret not found responses will be cached for
## this duration.
##
secretCacheDurationNotFound:
## If the cache is enabled, expired items will be removed on this internal.
##
secretCachePurgeInterval:
## Minimum level of logs to see. Possible options: debug, info, error.
##
logLevel: info
## IP address on which to listen for HTTP traffic (web UI and API).
##
bindIp: 0.0.0.0
## Port on which to listen for HTTP traffic (web UI and API).
##
bindPort: 8080
## TLS configuration for the web component to be able to serve HTTPS traffic.
## Once enabled, consumes the certificates set via secrets (`web-tls-cert` and
## `web-tls-key`).
##
tls:
## Enable serving HTTPS traffic directly through the web component.
##
enabled: false
## Port on which to listen for HTTPS traffic.
##
bindPort: 443
## URL used to reach any ATC from the outside world.
## This is *very* important for a proper authentication workflow as
## browser redirects are based on the value set here.
##
## Example: http://ci.concourse-ci.org
##
externalUrl:
encryption:
## Enable encryption of pipeline configuration. Encryption keys can be set via secrets
## (`encryption-key` and `old-encryption-key` fields).
## Ref: https://concourse-ci.org/encryption.html
##
enabled: false
localAuth:
## Enable the use of local authentication (basic auth).
## Once enabled, users configured through `local-users` (secret)
## are able to authenticate.
##
## Local users can be individually added to the `main` team by setting
## `concourse.web.auth.mainTeam.localUser` with a comma-separated list
## of ids.
##
## Ref: https://concourse-ci.org/local-auth.html
##
enabled: true
## IP address on which to listen for the pprof debugger endpoints.
##
debugBindIp: 127.0.0.1
## Port on which to listen for the pprof debugger endpoints.
##
debugBindPort: 8079
## Length of time for a intercepted session to be idle before terminating.
##
interceptIdleTimeout: 0m
## Time limit on checking for new versions of resources.
##
globalResourceCheckTimeout: 1h
## Time limit on P2P volume streaming
##
p2pVolumeStreamingTimeout:
## Maximum number of checks that can be started per second. If not
## specified, # this will be calculated as (# of resources)/(resource
## checking interval). # -1 value will remove this maximum limit of checks
## per second.
maxChecksPerSecond: 0
## Interval on which to check for new versions of resources.
##
resourceCheckingInterval: 1m
## Interval on which to check for new versions of any resources that have
## configured a webhook token
##
resourceWithWebhookCheckingInterval: 1m
## Configuration file for specifying defaults for base resource types
## Ref: https://concourse-ci.org/concourse-web.html#resource-defaults
## Example:
## baseResourceTypeDefaults: |
## registry-image:
## registry_mirror:
## host: https://registry.mirror.example.com
##
baseResourceTypeDefaults: ""
## Compression to use when streaming artifacts (values: zstd, gzip)
##
streamingArtifactsCompression:
## Method by which a worker is selected during container placement.
## Possible values: volume-locality | random | fewest-build-containers | limit-active-tasks | limit-active-containers | limit-active-volumes
containerPlacementStrategy: volume-locality
## Instead of specifying a single placement strategy, configure a chain of
## them to be applied in order.
##
## If set, takes priority over containerPlacementStrategy.
##
## Possible values: volume-locality | fewest-build-containers | limit-active-tasks | limit-active-containers | limit-active-volumes
containerPlacementStrategies: []
## A second method by which a worker is selected during container placement
## that is only used for get and nested check steps.
## Possible values: random | fewest-build-containers | limit-active-tasks | limit-active-containers | limit-active-volumes
noInputContainerPlacementStrategy:
## Instead of specifying a single placement strategy, configure a chain of
## them to be applied in order.
##
## If set, takes priority over noInputContainerPlacementStrategy.
##
## Possible values: fewest-build-containers | limit-active-tasks | limit-active-containers | limit-active-volumes
noInputContainerPlacementStrategies: []
## A third method by which a worker is selected during container placement
## that is only used for resource check steps.
## Possible values: random | fewest-build-containers | limit-active-tasks | limit-active-containers | limit-active-volumes
checkContainerPlacementStrategy:
## Instead of specifying a single placement strategy, configure a chain of
## them to be applied in order.
##
## If set, takes priority over checkContainerPlacementStrategy.
##
## Possible values: fewest-build-containers | limit-active-tasks | limit-active-containers | limit-active-volumes
checkContainerPlacementStrategies: []
## Maximum allowed number of active build tasks per worker.
##
## Has effect only when containerPlacementStrategy is set to use
## limit-active-tasks placement strategy.
##
## ps.: 0 means no limit.
##
## ref: https://concourse-ci.org/container-placement.html#limit-active-tasks-strategy
##
limitActiveTasks:
## Maximum allowed number of active containers per worker.
##
## Has effect only when containerPlacementStrategy is set to use
## limit-active-containers placement strategy.
##
## ps.: 0 means no limit.
##
## ref: https://concourse-ci.org/container-placement.html#limit-active-containers-strategy
##
limitActiveContainers:
## Maximum allowed number of active volumes per worker.
##
## Has effect only when containerPlacementStrategy is set to use
## limit-active-volumes placement strategy.
##
## ps.: 0 means no limit.
##
## ref: https://concourse-ci.org/container-placement.html#limit-active-volumes-strategy
##
limitActiveVolumes:
## How long to wait for requests to Garden to complete. 0 means no timeout.
##
gardenRequestTimeout:
## How long to wait for Baggageclaim to send the response header.
##
baggageclaimResponseHeaderTimeout: 1m
## Directory containing downloadable CLI binaries.
## By default, Concourse will try to find the assets
## path relative to the executable.
##
cliArtifactsDir:
## Log database queries.
##
logDbQueries: false
## Log cluster name.
##
logClusterName:
## Interval on which to run build tracking.
##
buildTrackerInterval: 10s
## Default number of build logs to retain. 0 means all.
##
defaultBuildLogsToRetain:
## Maximum build logs to retain, 0 means not specified. Will override values configured in jobs.
##
maxBuildLogsToRetain:
## Default days to retain build logs. 0 means unlimited.
##
defaultDaysToRetainBuildLogs:
## Maximum days to retain build logs, 0 means not specified. Will override values configured in jobs.
##
maxDaysToRetainBuildLogs:
## Default max number of cpu shares per task, 0 means unlimited.
##
defaultTaskCpuLimit:
## Default maximum memory per task, 0 means unlimited.
##
defaultTaskMemoryLimit:
## The number of days after which a pipeline will be automatically paused #
## if none of its jobs have run in less than the given number of days. A #
## value of zero disables this component. If not set the component is
## disabled by default.
##
pausePipelinesAfter:
## Network address of this web node, reachable by other web nodes. Used for forwarded worker addresses. (default: $POD_IP)
##
peerAddress:
## Configurations regarding how the web component is able to connect to a postgres
## instance.
##
postgres:
## The host to connect to.
##
host:
## The port to connect to.
##
port: 5432
## Path to a UNIX domain socket to connect to.
##
socket:
## Whether or not to use SSL.
##
sslmode: disable
## Dialing timeout. (0 means wait indefinitely)
##
connectTimeout: 5m
## The name of the database to use.
##
database: atc
kubernetes:
## Enable the use of Kubernetes Secrets as the credential provider for
## concourse pipelines.
##
enabled: true
## Prefix to use for Kubernetes namespaces under which secrets will be looked up.
## Defaults to the Release (https://helm.sh/docs/glossary/#release) name
## hyphen, e.g. "my-release-" produces namespace "my-release-main" for
## the "main" Concourse team.
namespacePrefix:
## Teams to create namespaces for to hold secrets.
## This property only has effect if `createTeamNamespaces` is set to `true`.
##
teams:
- main
## Create the Kubernetes namespace for each team listed under `concourse.web.kubernetes.teams`.
##
createTeamNamespaces: true
## When true, namespaces are not deleted when the release is deleted.
## Irrelevant if the namespaces are not created by this chart.
##
keepNamespaces: true
## Path to Kubernetes config when running ATC outside Kubernetes.
##
configPath:
## Configuration for using AWS SSM as a credential manager.
## Ref: https://concourse-ci.org/creds.html#asm
##
awsSecretsManager:
## Enable the use of AWS Secrets Manager for credential management.
##
enabled: false
## AWS region to use when reading from Secrets Manager
##
region:
## Configure authentication using an access key and secret key. If disabled, IAM role auth is assumed.
## Session Token can also be enabled, if required.
keyAuth:
enabled: true
useSessionToken: false
## pipeline-specific template for Secrets Manager parameters, defaults to: /concourse/{{.Team}}/{{.Pipeline}}/{{.Secret}}
##
pipelineSecretTemplate: /concourse/{{.Team}}/{{.Pipeline}}/{{.Secret}}
## team-specific template for Secrets Manager parameters, defaults to: /concourse/{{.Team}}/{{.Secret}}
##
teamSecretTemplate: /concourse/{{.Team}}/{{.Secret}}
## top level template for Secrets Manager shared parameters, defaults to: /concourse/{{.Secret}}
##
sharedSecretTemplate: /concourse/{{.Secret}}
## Configuration for using AWS SSM as a credential manager.
## Ref: https://concourse-ci.org/creds.html#ssm
##
awsSsm:
## Enable the use of AWS SSM.
##
enabled: false
## AWS region to use when reading from SSM
##
region:
## Configure authentication using an access key and secret key. If disabled, IAM role auth is assumed.
## Session Token can also be enabled, if required.
keyAuth:
enabled: true
useSessionToken: false
## pipeline-specific template for SSM parameters, defaults to: /concourse/{{.Team}}/{{.Pipeline}}/{{.Secret}}
##
pipelineSecretTemplate: /concourse/{{.Team}}/{{.Pipeline}}/{{.Secret}}
## team-specific template for SSM parameters, defaults to: /concourse/{{.Team}}/{{.Secret}}
##
teamSecretTemplate: /concourse/{{.Team}}/{{.Secret}}
## Configuration for using Vault as a credential manager.
## Ref: https://concourse-ci.org/creds.html#vault
##
vault:
## Enable the use of Vault as a credential manager.
##
enabled: false
## URL pointing to vault addr (i.e. http://vault:8200).
##
url:
## Disable Vault SRV lookup when vault url not including port.
## When vault url includes port, SRV lookup is diabled and this value has no impart.
##
disable_srv_lookup: false
## Vault namespace to use for authentication and secret lookup.
##
namespace:
## Vault path under which to namespace credentials lookup.
##
pathPrefix: /concourse
## Path under which to lookup shared credentials.
##
sharedPath:
## Path templates to use for credential lookup.
##
## Example: ["/{{.Team}}/{{.Pipeline}}/{{.Secret}}", "/{{.Team}}/{{.Secret}}"]
lookupTemplates: []
## if the Vault server is using a self-signed certificate, set this to true,
## and provide a value for the cert in secrets (field `vault-ca-cert`).
##
useCaCert: false
## Vault authentication backend, leave this blank if using an initial periodic token.
## Currently supported backends: token, approle, cert.
##
authBackend: ""
## if the Vault authentication backend requires params from secrets, set this to true,
## and provide a value in secrets (field `vault-client-auth-param`).
##
useAuthParam:
## Path to a directory of PEMEncoded CA cert files to verify the vault server SSL cert.
##
caPath:
## If set, is used to set the SNI host when connecting via TLS.
##
serverName:
## Enable insecure SSL verification.
##
insecureSkipVerify: false
## Time after which to force a reLogin. If not set, the token will just be continuously renewed.
##
authBackendMaxTtl:
## The maximum time between retries when logging in or reAuthing a secret.
##
retryMax: 5m
## The initial time between retries when logging in or reAuthing a secret.
##
retryInitial: 1s
## The maximum time to wait to authenticate with Vault.
##
loginTimeout:
## The maximum time to wait for Vault queries to resolve.
##
queryTimeout:
## Configuration for using Credhub as a credential manager.
## Ref: https://concourse-ci.org/credhub-credential-manager.html
##
credhub:
## Enable the use of Credhub as a credential manager.
##
enabled: false
## CredHub server address used to access secrets
## Example: https://credhub.example.com
##
url:
## Path under which to namespace credential lookup. (default: /concourse)
##
pathPrefix:
## Enables using a CA Certificate
##
useCaCert: false
## Enables insecure SSL verification.
##
insecureSkipVerify: false
## Configures the way that the Concourse authenticates against CredHub
## - secrets: makes use of `client-id` and `client-secret`
## - mtls: leverages client certificates
##
authenticationMode: "secrets"
## Configuration for using Conjur as a credential manager.
## Ref: https://concourse-ci.org/conjur-credential-manager.html
##
conjur:
## Enable the use of Conjur as a credential manager
enabled: false
# URL of the Conjur instance.
applianceUrl:
# Path used to to locate pipeline-level secret
pipelineSecretTemplate: concourse/{{.Team}}/{{.Pipeline}}/{{.Secret}}
# Path used to locate team-level secret
teamSecretTemplate: concourse/{{.Team}}/{{.Secret}}
# Path used to locate a vault or safe-level secret
secretTemplate: concourse/{{.Secret}}
tracing:
## Service name to attach to traces as metadata.
#
## Example: "web"
##
serviceName:
## Attributes to attach to traces as metadata.
#
## Example:
## environment: ci
##
attributes:
## Jaeger's HTTP-based Thrift collector endpoint.
#
## Example: "http://jaeger:14268/api/traces"
##
jaegerEndpoint:
## Tags to include to components
##
## Example: "foo:bar,caz:zaz"
##
jaegerTags:
## Name of the service being traced
##
## Example: "web"
##
jaegerService:
## GCP's Project ID
##
## Example: "my-projectid"
##
stackdriverProjectId:
## Honeycomb.io API Key
##
honeycombApiKey:
## Name of dataset
##
## Example: "web"
##
honeycombDataset:
## OTLP address to send traces to
##
## Example: "otel-collector:55680"
##
otlpAddress:
## Headers to attach to each tracing message
##
## Example:
## lightstep-access-token: mysupersecrettoken
##
otlpHeaders:
## Whether to use TLS for the OTLP connection
##
otlpUseTls:
metrics:
## Host string to attach to emitted metrics.
##
hostName:
## A key-value attribute to attach to emitted metrics.
##
attribute:
## Enable capturing of error log metrics.
##
captureErrorMetrics: false
## The size of the buffer used in emitting event metrics.
##
bufferSize:
datadog:
enabled: false
## Use IP of node the pod is scheduled on, overrides `agentHost`
##
agentHostUseHostIP: false
## Datadog agent host to expose dogstatsd metrics
##
agentHost: 127.0.0.1
## Datadog agent port to expose dogstatsd metrics
##
agentPort: 8125
## Datadog agent unix domain socket (uds) filepath to expose dogstatsd metrics
## e.g. /tmp/datadog.socket
##
agentUdsFilepath:
## Prefix for all metrics to easily find them in Datadog
##
prefix: "concourse.ci"
influxdb:
enabled: false
## Number of points to batch together when emitting to InfluxDB
##
batchSize:
## The duration to wait before emitting a batch of points to InfluxDB,
## disregarding # the batch size.
##
batchDuration:
## InfluxDB server address to emit points to.
## Example: http://127.0.0.1:8086
##
url:
## InfluxDB database to write points to.
##
database: concourse
## InfluxDB server username.
##
username:
## Skip SSL verification when emitting to InfluxDB.
##
insecureSkipVerify: false
## Emit metrics to logs instead of an actual metrics system.
##
emitToLogs: false
newrelic:
enabled: false
## New Relic Insights Insert API base Url
## For configuring EU data centers refer to:
## https://docs.newrelic.com/docs/using-new-relic/welcome-new-relic/getting-started/introduction-eu-region-data-center#endpoints
## For default values refer to: https://github.com/concourse/concourse/blob/bc2ff0c9a606814a0a5d6338f44d5cd942b74456/atc/metric/emitter/newrelic.go#L43
##
url:
## New Relic Account ID
##
accountId:
## New Relic Insights API Key
##
apiKey:
## An optional prefix for emitted New Relic events
##
servicePrefix:
## Number of events to batch together before emitting
##
batchSize:
## Length of time to wait between emitting until all currently batched events are emitted
## Example: 60s
##
batchDuration:
## Disables compression of the batch before sending it
##
disableCompression:
prometheus:
enabled: false
## IP to listen on to expose Prometheus metrics.
##
bindIp: "0.0.0.0"
## Port to listen on to expose Prometheus metrics.
##
bindPort: 9391
## If Prometheus operator is used, also create a servicemonitor object
serviceMonitor:
enabled: false
interval: "30s"
# Namespace the servicemonitor object should be in
namespace:
## Additional Labels to be added to the servicemonitor.
##
##
## Example:
## key1: "value1"
## key2: "value2"
##
## Ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
labels: {}
## Relabel Metrics
## https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs
## Example that consolidates duplicate metrics when web is running in HA:
## metricRelabelings:
## - regex: 'instance'
## action: labeldrop
## - regex: 'pod'
## action: labeldrop
metricRelabelings:
## The value to set for X-Frame-Options. If omitted, the default value in
## the Concourse binary is used.
##
xFrameOptions:
## The value to set for Content-Security-Policy header. If omitted, the default
## value in the Concourse binary is used.
##
contentSecurityPolicy:
gc:
## Interval on which to perform garbage collection.
##
interval: 30s
## Grace period before reaping oneOff task containers
##
oneOffGracePeriod: 5m
## Period after which to reap containers and volumes that were created but
## went missing from the worker.
##
missingGracePeriod: 5m
## Period after which hijacked containers will be garbage collected
##
hijackGracePeriod:
## Period after which failed containers will be garbage collected
##
failedGracePeriod:
## Period after which completed checks will be garbage collected
##
checkRecyclePeriod:
## Period after which unused var_sources will get garbage collected
##
varSourceRecyclePeriod:
syslog:
## Enables the emission of build logs to external log ingesters through
## using the syslog protocol.
##
enabled: false
## Client hostname with which the build logs will be sent to the syslog server.
##
hostname: atc-syslog-drainer
## Remote syslog server address with port (Example: 0.0.0.0:514).
##
address:
## Transport protocol for syslog messages (Currently supporting tcp, udp & tls).
##
transport:
## Interval over which checking is done for new build logs to send to syslog server
## (duration measurement units are s/m/h; eg. 30s/30m/1h)
drainInterval: 30s
## If the syslog server is using a self-signed certificate, set this to true,
## and provide a value for the cert in secrets (`syslog-ca-cert`).
##
useCaCert: false
opa:
## Open Policy Agent policy check endpoint.
##
## Example: https://opa.example.com:8181/v1/data/concourse/allow
##
url:
## Open Policy Agent API request timeout, in Go duration format.
##
## Example: 5s for 5 seconds
##
timeout:
result:
## Name of key in the Open Policy Agent result to check if the action is allowed.
##
## Example: result.allowed
##
allowedKey:
## Name of key in the Open Policy Agent result to check if it should hard block and fail, or soft block and emit warning on failure.