Fix connectionPoolMaxOverflow in anchor helm chart (#21813)

Was incorrectly set to connectionPoolSize while the actual value
in connectionPoolMaxOverflow was ignored. This prevents the proper
use of connection limits using the chart.

Signed-off-by: Stefan Hacker <mail@hacst.net>
This commit is contained in:
Stefan Hacker
2020-04-29 11:50:25 -07:00
committed by GitHub
parent 21797b166e
commit e487e49ea7
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
apiVersion: v1
name: anchore-engine
version: 1.6.0
version: 1.6.1
appVersion: 0.7.1
description: Anchore container analysis and policy evaluation engine service
keywords:
@@ -125,7 +125,7 @@ data:
timeout: {{ .Values.anchoreGlobal.dbConfig.timeout }}
ssl: false
db_pool_size: {{ .Values.anchoreGlobal.dbConfig.connectionPoolSize }}
db_pool_max_overflow: {{ .Values.anchoreGlobal.dbConfig.connectionPoolSize }}
db_pool_max_overflow: {{ .Values.anchoreGlobal.dbConfig.connectionPoolMaxOverflow }}
services:
apiext:
enabled: true
@@ -71,7 +71,7 @@ data:
timeout: {{ .Values.anchoreGlobal.dbConfig.timeout }}
ssl: false
db_pool_size: {{ .Values.anchoreGlobal.dbConfig.connectionPoolSize }}
db_pool_max_overflow: {{ .Values.anchoreGlobal.dbConfig.connectionPoolSize }}
db_pool_max_overflow: {{ .Values.anchoreGlobal.dbConfig.connectionPoolMaxOverflow }}
services:
{{- if .Values.anchoreEnterpriseRbac.enabled }}
@@ -63,7 +63,7 @@ data:
timeout: {{ .Values.anchoreEnterpriseFeeds.dbConfig.timeout }}
ssl: false
db_pool_size: {{ .Values.anchoreEnterpriseFeeds.dbConfig.connectionPoolSize }}
db_pool_max_overflow: {{ .Values.anchoreEnterpriseFeeds.dbConfig.connectionPoolSize }}
db_pool_max_overflow: {{ .Values.anchoreEnterpriseFeeds.dbConfig.connectionPoolMaxOverflow }}
services:
feeds:
enabled: true