Signed-off-by: David J. M. Karlsen <david@davidkarlsen.com>
This commit is contained in:
David J. M. Karlsen
2019-02-28 01:25:28 -08:00
committed by Kubernetes Prow Robot
parent fbc9f1d365
commit 6b73423633
4 changed files with 21 additions and 5 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
apiVersion: v1
appVersion: "v1.0.1"
appVersion: "v1.0.2"
home: https://comcast.github.io/kuberhealthy/
description: The official Helm chart for Kuberhealthy.
name: kuberhealthy
version: 1.1.2
version: 1.2.0
maintainers:
- name: integrii
email: eric.greer@comcast.com
+7 -1
View File
@@ -37,7 +37,7 @@ app:
name: "kuberhealthy" # what to name the kuberhealthy deployment
image:
repository: quay.io/comcast/kuberhealthy
tag: v1.0.1
tag: v1.0.2
resources:
requests:
cpu: 100m
@@ -54,6 +54,12 @@ deployment:
maxUnavailable: 1
imagePullPolicy: IfNotPresent
namespace: kuberhealthy
command:
- /app/kuberhealthy
# use this to override location of the test-image, see: https://github.com/Comcast/kuberhealthy/blob/master/docs/FLAGS.md
# args:
# - -dsPauseContainerImageOverride
# - your-repo/google_containers/pause:0.8.0
securityContext: # default container security context
runAsNonRoot: true
runAsUser: 999
@@ -30,6 +30,11 @@ spec:
automountServiceAccountToken: true
containers:
- image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
command: {{ .Values.deployment.command }}
{{- if .Values.deployment.args }}
args:
{{ toYaml .Values.deployment.args | nindent 8 }}
{{- end }}
securityContext:
{{- toYaml .Values.securityContext | nindent 10 -}}
imagePullPolicy: {{ .Values.deployment.imagePullPolicy }}
+7 -2
View File
@@ -11,7 +11,7 @@ prometheus:
image:
repository: quay.io/comcast/kuberhealthy
tag: v1.0.1
tag: v1.0.2
resources:
requests:
@@ -30,7 +30,12 @@ deployment:
maxSurge: 0
maxUnavailable: 1
imagePullPolicy: IfNotPresent
command:
- /app/kuberhealthy
# use this to override location of the test-image, see: https://github.com/Comcast/kuberhealthy/blob/master/docs/FLAGS.md
# args:
# - -dsPauseContainerImageOverride
# - your-repo/google_containers/pause:0.8.0
securityContext:
runAsNonRoot: true
runAsUser: 999