Skip to content

Commit

Permalink
Merge branch 'main' of github.com:dkrizic/charts
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrizic committed Jun 15, 2022
2 parents 64d32a2 + e27fb97 commit 835e05d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
2 changes: 1 addition & 1 deletion charts/checkmk/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: 2.0.1
version: 2.0.2

# 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
Expand Down
13 changes: 3 additions & 10 deletions charts/checkmk/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,10 @@ spec:
- name: http
containerPort: 5000
protocol: TCP
# livenessProbe:
# httpGet:
# path: /
# port: http
livenessProbe:
{{- toYaml .Values.livenessProbe | nindent 12 }}
readinessProbe:
initialDelaySeconds: 120
failureThreshold: 30
periodSeconds: 10
httpGet:
path: /
port: http
{{- toYaml .Values.readinessProbe | nindent 12 }}
volumeMounts:
- name: checkmk-sites
mountPath: /omd/sites
Expand Down
12 changes: 12 additions & 0 deletions charts/checkmk/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,18 @@ imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""

livenessProbe:
httpGet:
path: /
port: http
readinessProbe:
initialDelaySeconds: 120
failureThreshold: 30
periodSeconds: 10
httpGet:
path: /
port: http

serviceAccount:
# Specifies whether a service account should be created
create: true
Expand Down

0 comments on commit 835e05d

Please sign in to comment.