Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Signed-off-by: David J. M. Karlsen <david@davidkarlsen.com>
  • Loading branch information
davidkarlsen authored and k8s-ci-robot committed Feb 28, 2019
1 parent fbc9f1d commit 6b73423
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 5 deletions.
4 changes: 2 additions & 2 deletions stable/kuberhealthy/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 7 additions & 1 deletion stable/kuberhealthy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
5 changes: 5 additions & 0 deletions stable/kuberhealthy/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
9 changes: 7 additions & 2 deletions stable/kuberhealthy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ prometheus:

image:
repository: quay.io/comcast/kuberhealthy
tag: v1.0.1
tag: v1.0.2

resources:
requests:
Expand All @@ -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
Expand Down

0 comments on commit 6b73423

Please sign in to comment.