Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve postgres liveness probes #491

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion postgres/helm/postgres/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: postgres
description: A Helm chart for deploying the zalando postgres operator
type: application
version: 0.2.11
version: 0.2.12
appVersion: "1.8.2"
6 changes: 3 additions & 3 deletions postgres/helm/postgres/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -177,13 +177,13 @@ configKubernetes:
watched_namespace: "*" # listen to all namespaces

liveness_probe:
failureThreshold: 3
failureThreshold: 6
httpGet:
path: /readiness
port: 8008
scheme: HTTP
initialDelaySeconds: 10
periodSeconds: 10
initialDelaySeconds: 15
periodSeconds: 60
successThreshold: 1
timeoutSeconds: 5

Expand Down