make image_analyze_timeout_seconds configurable (#18644)

Signed-off-by: Brady Todhunter <bradyt@anchore.com>
This commit is contained in:
Brady Todhunter
2019-11-11 04:03:41 -08:00
committed by Kubernetes Prow Robot
parent 0522b2b39d
commit 9a8bd41ad0
3 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
apiVersion: v1
name: anchore-engine
version: 1.3.4
version: 1.3.5
appVersion: 0.5.1
description: Anchore container analysis and policy evaluation engine service
keywords:
@@ -25,6 +25,7 @@ data:
service_dir: {{ .Values.anchoreGlobal.serviceDir }}
tmp_dir: {{ .Values.anchoreGlobal.scratchVolume.mountPath }}
log_level: {{ .Values.anchoreGlobal.logLevel }}
image_analyze_timeout_seconds: {{ .Values.anchoreGlobal.imageAnalyzeTimeoutSeconds }}
cleanup_images: {{ .Values.anchoreGlobal.cleanupImages }}
allow_awsecr_iam_auto: {{ .Values.anchoreGlobal.allowECRUseIAMRole }}
host_id: "${ANCHORE_POD_NAME}"
+3
View File
@@ -122,6 +122,9 @@ anchoreGlobal:
logLevel: INFO
cleanupImages: true
# Define timeout, in seconds, for image analysis
imageAnalyzeTimeoutSeconds: 3600
# If true, when a user adds an ECR registry with username = awsauto then the system will look for an instance profile to use for auth against the registry
allowECRUseIAMRole: false