Skip to content

Commit

Permalink
Merge branch 'master' into handle-config-changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mjnagel authored Mar 11, 2021
2 parents 0743d94 + 65461bb commit db2ed0b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
4 changes: 2 additions & 2 deletions stable/anchore-engine/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: anchore-engine
version: 1.12.3
appVersion: 0.9.1
version: 1.12.4
appVersion: 0.9.2
description: Anchore container analysis and policy evaluation engine service
keywords:
- analysis
Expand Down
6 changes: 4 additions & 2 deletions stable/anchore-engine/templates/engine_configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ data:
service_watcher: {{ .Values.anchoreCatalog.cycleTimers.service_watcher }}
# Interval between checks to repo for new tags
repo_watcher: {{ .Values.anchoreCatalog.cycleTimers.repo_watcher }}
k8s_watcher: {{ .Values.anchoreCatalog.cycleTimers.k8s_watcher }}
event_log:
{{- toYaml .Values.anchoreCatalog.events | nindent 10 }}
analysis_archive:
Expand All @@ -229,6 +230,8 @@ data:
ssl_cert: "/home/anchore/certs/{{- .Values.anchoreGlobal.internalServicesSsl.certSecretCertName }}"
ssl_key: "/home/anchore/certs/{{- .Values.anchoreGlobal.internalServicesSsl.certSecretKeyName }}"
{{- end }}
runtime_inventory:
image_ttl_days: {{ .Values.anchoreCatalog.runtime_inventory.image_ttl_days }}
simplequeue:
enabled: true
require_auth: true
Expand All @@ -255,5 +258,4 @@ data:
ssl_enable: {{ .Values.anchoreGlobal.internalServicesSsl.enabled }}
ssl_cert: "/home/anchore/certs/{{- .Values.anchoreGlobal.internalServicesSsl.certSecretCertName }}"
ssl_key: "/home/anchore/certs/{{- .Values.anchoreGlobal.internalServicesSsl.certSecretKeyName }}"
{{- end }}
{{- end }}
15 changes: 12 additions & 3 deletions stable/anchore-engine/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ ingress:
# Global configuration shared by all anchore-engine services.
anchoreGlobal:
# Image used for all anchore engine deployments (excluding enterprise components).
image: docker.io/anchore/anchore-engine:v0.9.1
image: docker.io/anchore/anchore-engine:v0.9.2
imagePullPolicy: IfNotPresent

# Set image pull secret name if using an anchore-engine image from a private registry
Expand Down Expand Up @@ -420,6 +420,8 @@ anchoreCatalog:
repo_watcher: 60
# Interval for when the catalog garbage collects images marked for deletion
image_gc: 60
# Interval for the runtime inventory image execution poll
k8s_watcher: 300

# Event log configuration for webhooks
events:
Expand Down Expand Up @@ -547,6 +549,13 @@ anchoreCatalog:
tolerations: []
affinity: {}

runtime_inventory:
# This setting tells Anchore how long an image can be missing from an inventory report before it is removed from
# The working set. Note: The image will still have a historical record in the reports service, subject to data history
# constraints as part of that service.
# Note: if a runtime inventory image's digest is also in anchore for regular image analysis, it won't be removed.
image_ttl_days: 1

# Pod configuration for the anchore engine policy service.
anchorePolicyEngine:
replicaCount: 1
Expand Down Expand Up @@ -629,7 +638,7 @@ anchoreEnterpriseGlobal:
# Create this secret with the following command - kubectl create secret generic anchore-enterprise-license --from-file=license.yaml=<PATH TO LICENSE.YAML>
licenseSecretName: anchore-enterprise-license

image: docker.io/anchore/enterprise:v3.0.0
image: docker.io/anchore/enterprise:v3.0.1
imagePullPolicy: IfNotPresent
# Name of the kubernetes secret containing your dockerhub creds with access to the anchore enterprise images.
# Create this secret with the following command - kubectl create secret docker-registry anchore-enterprise-pullcreds --docker-server=docker.io --docker-username=<USERNAME> --docker-password=<PASSWORD> --docker-email=<EMAIL_ADDRESS>
Expand Down Expand Up @@ -865,7 +874,7 @@ anchoreEnterpriseNotifications:
anchoreEnterpriseUi:
# If enabled is set to false, set anchore-ui-redis.enabled to false to ensure that helm doesn't stand up a unneccessary redis instance.
enabled: true
image: docker.io/anchore/enterprise-ui:v3.0.0
image: docker.io/anchore/enterprise-ui:v3.0.1
imagePullPolicy: IfNotPresent

# Set extra environment variables. These will be set on all UI containers.
Expand Down

0 comments on commit db2ed0b

Please sign in to comment.