Skip to content

Commit

Permalink
helm: make the onboardme container just run forever
Browse files Browse the repository at this point in the history
jessebot committed Jul 10, 2024
1 parent 165282a commit 4b816aa
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/onboardme/Chart.yaml
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.1
version: 0.2.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
6 changes: 6 additions & 0 deletions charts/onboardme/templates/deployment.yaml
Original file line number Diff line number Diff line change
@@ -39,6 +39,12 @@ spec:
{{- toYaml . | nindent 12 }}
{{- end }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
command:
- "/bin/bash"
args:
- "-c"
- |
while true; do sleep 1; done
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- name: http
3 changes: 1 addition & 2 deletions charts/onboardme/values.yaml
Original file line number Diff line number Diff line change
@@ -33,8 +33,7 @@ serviceAccount:
podAnnotations: {}
podLabels: {}

podSecurityContext:
fsGroup: 1337
podSecurityContext: {}

securityContext:
capabilities:

0 comments on commit 4b816aa

Please sign in to comment.