Skip to content

Commit

Permalink
fix health/readiness checks (#3)
Browse files Browse the repository at this point in the history
* fix health/readiness checks

* version bump
  • Loading branch information
markphelps authored Sep 6, 2022
1 parent 3269652 commit 93fb754
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/flipt/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: flipt
home: https://flipt.io
description: Flipt is an open source, self-hosted feature flag solution.
type: application
version: 0.6.0
version: 0.7.0
appVersion: "v1.10.1"
maintainers:
- name: Flipt
Expand Down
6 changes: 4 additions & 2 deletions charts/flipt/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,14 @@ spec:
{{- end }}
livenessProbe:
httpGet:
path: /
path: /health
port: http
initialDelaySeconds: 3
readinessProbe:
httpGet:
path: /
path: /health
port: http
initialDelaySeconds: 3
resources:
{{- toYaml .Values.resources | nindent 12 }}
volumes:
Expand Down

0 comments on commit 93fb754

Please sign in to comment.