Merge pull request #454 from InTheCloudDan/helm-tls-option

adding insecure TLS to Helm chart
This commit is contained in:
Jimmy Zelinskie 2017-08-28 13:33:36 -04:00 committed by GitHub
commit cdd214b889
2 changed files with 2 additions and 0 deletions

View File

@ -24,6 +24,7 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }}
args:
- "-log-level={{ .Values.logLevel }}"
{{ if .Values.insecureTls }}- "--insecure-tls" {{end}}
ports:
- name: clair-api
containerPort: {{ .Values.service.internalApiPort }}

View File

@ -3,6 +3,7 @@
# Declare variables to be passed into your templates.
replicaCount: 1
logLevel: info
insecureTls: false
image:
repository: quay.io/coreos/clair-git
tag: latest