Skip to content

Commit

Permalink
Merge pull request #338 from concourse/release/7.10.x
Browse files Browse the repository at this point in the history
Merge Release/7.10.x back into master after 7.10.0 release
  • Loading branch information
Spimtav authored Aug 17, 2023
2 parents a3ce5c4 + ff5e532 commit 4b2e8ae
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
16 changes: 16 additions & 0 deletions templates/web-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,10 @@ spec:
- name: CONCOURSE_DEFAULT_TASK_TIMEOUT
value: {{ .Values.concourse.web.defaultTaskTimeout | quote }}
{{- end }}
{{- if .Values.concourse.web.numGoroutineThreshold }}
- name: CONCOURSE_NUM_GOROUTINE_THRESHOLD
value: {{ .Values.concourse.web.numGoroutineThreshold | quote }}
{{- end }}
{{- if .Values.concourse.web.apiMaxConns }}
- name: CONCOURSE_API_MAX_CONNS
value: {{ .Values.concourse.web.apiMaxConns | quote }}
Expand Down Expand Up @@ -359,6 +363,10 @@ spec:
- name: CONCOURSE_STREAMING_ARTIFACTS_COMPRESSION
value: {{ .Values.concourse.web.streamingArtifactsCompression | quote }}
{{- end }}
{{- if .Values.concourse.web.streamingSizeLimitation }}
- name: CONCOURSE_STREAMING_SIZE_LIMITATION
value: {{ .Values.concourse.web.streamingSizeLimitation | quote }}
{{- end }}
{{- if .Values.concourse.web.debugBindIp }}
- name: CONCOURSE_DEBUG_BIND_IP
value: {{ .Values.concourse.web.debugBindIp | quote }}
Expand Down Expand Up @@ -476,6 +484,14 @@ spec:
- name: CONCOURSE_DEFAULT_TASK_MEMORY_LIMIT
value: {{ .Values.concourse.web.defaultTaskMemoryLimit | quote }}
{{- end }}
{{- if .Values.concourse.web.numGoroutineThreshold }}
- name: CONCOURSE_NUM_GOROUTINE_THRESHOLD
value: {{ .Values.concourse.web.numGoroutineThreshold | quote }}
{{- end }}
{{- if .Values.concourse.web.dbNotificationBusQueueSize }}
- name: CONCOURSE_DB_NOTIFICATION_BUS_QUEUE_SIZE
value: {{ .Values.concourse.web.dbNotificationBusQueueSize | quote }}
{{- end }}
{{- include "concourse.postgresql.env" . | indent 12 }}
{{- if .Values.concourse.web.kubernetes.enabled }}
- name: CONCOURSE_KUBERNETES_IN_CLUSTER
Expand Down
19 changes: 18 additions & 1 deletion values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,12 @@ concourse:
##
defaultTaskTimeout:

## Work will be distributed to other ATCs when this number of go routines is reached.
##
## Example: 50000
##
numGoroutineThreshold:

## The maximum number of open connections for the API connection pool.
##
apiMaxConns:
Expand Down Expand Up @@ -314,10 +320,14 @@ concourse:
##
baseResourceTypeDefaults: ""

## Compression to use when streaming artifacts (values: zstd, gzip)
## Compression to use when streaming artifacts (values: zstd, gzip, raw)
##
streamingArtifactsCompression:

## Internal volume streaming size limitation in MB. In case of small limitation
## needed, float can be used like 0.01.
streamingSizeLimitation:

## 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
Expand Down Expand Up @@ -439,6 +449,13 @@ concourse:
##
defaultTaskMemoryLimit:

## Work will be distributed to other ATCs when this number of go routines is reached.
numGoroutineThreshold:

## DB notification bus queue size, default is 10000. If UI often misses loading
## running build logs, then consider to increase the queue size.
dbNotificationBusQueueSize: 10000

## 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
Expand Down

0 comments on commit 4b2e8ae

Please sign in to comment.