mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user