@@ -21,7 +21,7 @@ image: concourse/concourse
2121# # of `concourse/concourse`.
2222# # Ref: https://hub.docker.com/r/concourse/concourse/tags/
2323# #
24- imageTag : " 7.11.0 "
24+ imageTag : " 7.12.1 "
2525
2626# # Specific image digest to use in place of a tag.
2727# # Ref: https://kubernetes.io/docs/concepts/configuration/overview/#container-images
@@ -305,6 +305,10 @@ concourse:
305305 # #
306306 resourceCheckingInterval : 1m
307307
308+ # # Interval on which to check for new versions of resource types.
309+ # #
310+ resourceCheckingInterval : 1m
311+
308312 # # Interval on which to check for new versions of any resources that have
309313 # # configured a webhook token
310314 # #
@@ -495,6 +499,11 @@ concourse:
495499 # #
496500 database : atc
497501
502+ # # Whether to use the binary_parameter option from the lib/pq driver that
503+ # # Concourse uses to connect to PostgreSQL
504+ # #
505+ binaryParameter : false
506+
498507
499508 kubernetes :
500509 # # Enable the use of Kubernetes Secrets as the credential provider for
@@ -583,6 +592,9 @@ concourse:
583592 # #
584593 teamSecretTemplate : /concourse/{{.Team}}/{{.Secret}}
585594
595+ # # Path under which to lookup shared credentials.
596+ # #
597+ sharedPath :
586598
587599 # # Configuration for using Vault as a credential manager.
588600 # # Ref: https://concourse-ci.org/creds.html#vault
@@ -628,6 +640,13 @@ concourse:
628640 # #
629641 authBackend : " "
630642
643+ # # Path to file containing a Vault authentication token. This is particularly useful in
644+ # # combination with the Vault Agent sidecar.
645+ # #
646+ # # Example: /vault/secrets/token
647+ # #
648+ tokenPath : " "
649+
631650 # # if the Vault authentication backend requires params from secrets, set this to true,
632651 # # and provide a value in secrets (field `vault-client-auth-param`).
633652 # #
@@ -1705,7 +1724,7 @@ concourse:
17051724
17061725 # # Runtime to use with the worker. Possible values: guardian, containerd, houdini.
17071726 # # Please note that Houdini is insecure and doesn't run 'tasks' in containers.
1708- runtime :
1727+ runtime : containerd
17091728
17101729 tsa :
17111730
@@ -1799,10 +1818,23 @@ concourse:
17991818 # # Maximum container capacity. 0 means no limit. Defaults to 250.
18001819 maxContainers :
18011820
1802- # # Network range to use for dynamically allocated container subnets, defaults to "10.80.0.0/16"
1803- # #
1821+ # # Network range to use for dynamically allocated container subnets
1822+ # # defaults to "10.80.0.0/16"
18041823 networkPool :
18051824
1825+ # # Enable and configure IPv6 for containers on the worker
1826+ ipv6 :
1827+
1828+ # # Enables IPv6 networking in the Containerd CNI
1829+ enabled : false
1830+
1831+ # # Network range to use for dynamically allocated container
1832+ # # subnets, defaults to "fd9c:31a6:c759::/64"
1833+ pool :
1834+
1835+ # # Disables masquerading of container traffic with the workers address
1836+ disableMasquerade :
1837+
18061838 # # Time to wait for requests to Containerd to complete. 0 means no timeout.
18071839 requestTimeout :
18081840
0 commit comments