diff --git a/developing/postgres/Chart.yaml b/developing/postgres/Chart.yaml index d545845..26cd328 100644 --- a/developing/postgres/Chart.yaml +++ b/developing/postgres/Chart.yaml @@ -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.2.1 +version: 0.2.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 diff --git a/developing/postgres/templates/statefulset.yaml b/developing/postgres/templates/statefulset.yaml index fa23054..27cf6cc 100644 --- a/developing/postgres/templates/statefulset.yaml +++ b/developing/postgres/templates/statefulset.yaml @@ -48,7 +48,10 @@ spec: livenessProbe: exec: command: - - pg_isready --username={{ .Values.postgres.user }} --hostname=127.0.0.1 --dbname={{ .Values.postgres.db }} + - pg_isready + - --username={{ .Values.postgres.user }} + - --hostname=127.0.0.1 + - --dbname={{ .Values.postgres.db }} initialDelaySeconds: 120 periodSeconds: 30