Fixed external postgres endpoint in worker_configmap. (#7424)

Updated appVersion.

Updated chart version.

Signed-off-by: Brady Todhunter <bradyt@anchore.com>
This commit is contained in:
Btodhunter
2018-08-29 11:38:38 -07:00
committed by k8s-ci-robot
parent 057e051113
commit b452bfeb3b
3 changed files with 8 additions and 6 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
name: anchore-engine
version: 0.2.0
appVersion: 0.2.3
version: 0.2.1
appVersion: 0.2.4
description: Anchore container analysis and policy evaluation engine service
keywords:
- analysis
@@ -35,7 +35,11 @@ data:
#auto_policy_sync: true
database:
db_connect: "postgresql+pg8000://${ANCHORE_DB_USER}:${ANCHORE_DB_PASSWORD}@${ANCHORE_DB_HOST}:5432/${ANCHORE_DB}"
{{ if .Values.postgresql.enabled }}
db_connect: 'postgresql+pg8000://${ANCHORE_DB_USER}:${ANCHORE_DB_PASSWORD}@{{ template "postgres.fullname" . }}:5432/{{ .Values.postgresql.postgresDatabase }}'
{{ else }}
db_connect: 'postgresql+pg8000://${ANCHORE_DB_USER}:${ANCHORE_DB_PASSWORD}@{{ .Values.postgresql.externalEndpoint}}/{{ .Values.postgresql.postgresDatabase }}'
{{ end }}
db_connect_args:
timeout: 120
ssl: {{ .Values.globalConfig.dbConfig.ssl }}
@@ -53,4 +57,3 @@ data:
ssl_cert: {{ .Values.workerConfig.ssl.certDir -}}/{{- .Values.workerConfig.ssl.certSecretCertName }}
ssl_key: {{ .Values.workerConfig.ssl.certDir -}}/{{ .Values.workerConfig.ssl.certSecretKeyName }}
ssl_enable: {{ .Values.globalConfig.internalServicesSslEnabled }}
+1 -2
View File
@@ -12,7 +12,7 @@ service:
image:
# Can use 'latest' but not recommended
tag: "docker.io/anchore/anchore-engine:v0.2.3"
tag: "docker.io/anchore/anchore-engine:v0.2.4"
# pullPolicy: IfNotPresent
# Used to create Ingress record (should used with service.type: ClusterIP or NodePort depending on platform)
@@ -98,7 +98,6 @@ globalConfig:
# Configuration for the core engine service that serves the API
# The core service handles the user facing APIs and coordination of workers as well as storage interfaces for data
coreConfig:
# For the moment, the replica count should stay at 1. That restriction should change soon.
replicaCount: 1
logLevel: INFO