Skip to content

Commit

Permalink
changing probes to tcp
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Aug 7, 2023
1 parent 3330d64 commit 72d6a44
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 15 deletions.
2 changes: 1 addition & 1 deletion charts/humhub/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: 0.1.13
version: 0.1.14

# 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
32 changes: 18 additions & 14 deletions charts/humhub/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,22 +42,26 @@ spec:
containerPort: 80
protocol: TCP
startupProbe:
httpGet:
path: /
port: http
failureThreshold: 30
periodSeconds: 10
timeoutSeconds: 3
tcpSocket:
port: http
timeoutSeconds: 3
periodSeconds: 10
successThreshold: 1
failureThreshold: 10
livenessProbe:
httpGet:
path: /
port: http
timeoutSeconds: 3
tcpSocket:
port: http
timeoutSeconds: 3
periodSeconds: 10
successThreshold: 1
failureThreshold: 10
readinessProbe:
httpGet:
path: /
port: http
timeoutSeconds: 3
tcpSocket:
port: http
timeoutSeconds: 3
periodSeconds: 10
successThreshold: 1
failureThreshold: 10
env:
- name: HUMHUB_ADMIN_LOGIN
value: {{.Values.adminUsername}}
Expand Down

0 comments on commit 72d6a44

Please sign in to comment.