diff --git a/stable/anchore-engine/Chart.yaml b/stable/anchore-engine/Chart.yaml index 3fb9421ac7..53b7cd4db6 100644 --- a/stable/anchore-engine/Chart.yaml +++ b/stable/anchore-engine/Chart.yaml @@ -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: diff --git a/stable/anchore-engine/templates/engine_configmap.yaml b/stable/anchore-engine/templates/engine_configmap.yaml index 3c870f4320..17e02d1c45 100644 --- a/stable/anchore-engine/templates/engine_configmap.yaml +++ b/stable/anchore-engine/templates/engine_configmap.yaml @@ -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}" diff --git a/stable/anchore-engine/values.yaml b/stable/anchore-engine/values.yaml index 2231afbaeb..2bd42ec286 100644 --- a/stable/anchore-engine/values.yaml +++ b/stable/anchore-engine/values.yaml @@ -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