Skip to content

Commit 6ff238b

Browse files
authored
Merge pull request #28 from RonasIT/web-probes
2 parents 66d7068 + abfc54d commit 6ff238b

3 files changed

Lines changed: 27 additions & 27 deletions

File tree

charts/web/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.3.1
18+
version: 0.3.2
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/web/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# web
22

3-
![Version: 0.3.1](https://img.shields.io/badge/Version-0.3.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square)
3+
![Version: 0.3.2](https://img.shields.io/badge/Version-0.3.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square)
44

55
A Helm chart for Kubernetes to deploy a react, react native, angular, nextjs or vuejs application
66

charts/web/templates/deployment.yaml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -40,31 +40,31 @@ spec:
4040
containerPort: {{ .Values.service.port }}
4141
protocol: TCP
4242
{{- if .Values.livenessProbe.enabled }}
43-
livenessProbe:
44-
httpGet:
45-
path: {{ .Values.livenessProbe.path }}
46-
port: {{ .Values.livenessProbe.port }}
47-
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }}
48-
periodSeconds: {{ .Values.livenessProbe.periodSeconds }}
49-
timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds }}
50-
{{- end }}
51-
{{- if .Values.readinessProbe.enabled }}
52-
readinessProbe:
53-
httpGet:
54-
path: {{ .Values.readinessProbe.path }}
55-
port: {{ .Values.readinessProbe.port }}
56-
initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds }}
57-
periodSeconds: {{ .Values.readinessProbe.periodSeconds }}
58-
timeoutSeconds: {{ .Values.readinessProbe.timeoutSeconds }}
59-
{{- end }}
60-
{{- if .Values.startupProbe.enabled }}
61-
startupProbe:
62-
httpGet:
63-
path: {{ .Values.startupProbe.path }}
64-
port: {{ .Values.startupProbe.port }}
65-
initialDelaySeconds: {{ .Values.startupProbe.initialDelaySeconds }}
66-
periodSeconds: {{ .Values.startupProbe.periodSeconds }}
67-
timeoutSeconds: {{ .Values.startupProbe.timeoutSeconds }}
43+
livenessProbe:
44+
httpGet:
45+
path: {{ .Values.livenessProbe.path }}
46+
port: {{ .Values.livenessProbe.port }}
47+
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }}
48+
periodSeconds: {{ .Values.livenessProbe.periodSeconds }}
49+
timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds }}
50+
{{- end }}
51+
{{- if .Values.readinessProbe.enabled }}
52+
readinessProbe:
53+
httpGet:
54+
path: {{ .Values.readinessProbe.path }}
55+
port: {{ .Values.readinessProbe.port }}
56+
initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds }}
57+
periodSeconds: {{ .Values.readinessProbe.periodSeconds }}
58+
timeoutSeconds: {{ .Values.readinessProbe.timeoutSeconds }}
59+
{{- end }}
60+
{{- if .Values.startupProbe.enabled }}
61+
startupProbe:
62+
httpGet:
63+
path: {{ .Values.startupProbe.path }}
64+
port: {{ .Values.startupProbe.port }}
65+
initialDelaySeconds: {{ .Values.startupProbe.initialDelaySeconds }}
66+
periodSeconds: {{ .Values.startupProbe.periodSeconds }}
67+
timeoutSeconds: {{ .Values.startupProbe.timeoutSeconds }}
6868
{{- end }}
6969
{{- if .Values.resources }}
7070
resources: {{- toYaml .Values.resources | nindent 12 }}

0 commit comments

Comments
 (0)