diff --git a/stable/fairwinds-insights/CHANGELOG.md b/stable/fairwinds-insights/CHANGELOG.md index 015b72af8..98786b79a 100644 --- a/stable/fairwinds-insights/CHANGELOG.md +++ b/stable/fairwinds-insights/CHANGELOG.md @@ -1,4 +1,6 @@ # Changelog +## 0.21.3 +* Refine liveness and readiness probes to make them more robust ## 0.21.2 * Update application version to 14.3. [See the release notes for more details](https://insights.docs.fairwinds.com/release-notes) diff --git a/stable/fairwinds-insights/Chart.yaml b/stable/fairwinds-insights/Chart.yaml index fde3ed123..07686dc48 100644 --- a/stable/fairwinds-insights/Chart.yaml +++ b/stable/fairwinds-insights/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: "14.3" description: A Helm chart to run the Fairwinds Insights server name: fairwinds-insights -version: 0.21.2 +version: 0.21.3 kubeVersion: ">= 1.22.0-0" maintainers: - name: rbren diff --git a/stable/fairwinds-insights/templates/deployment-api.yaml b/stable/fairwinds-insights/templates/deployment-api.yaml index bbdb958d3..e17a58764 100644 --- a/stable/fairwinds-insights/templates/deployment-api.yaml +++ b/stable/fairwinds-insights/templates/deployment-api.yaml @@ -43,10 +43,16 @@ spec: httpGet: path: /health port: http + timeoutSeconds: 5 + periodSeconds: 5 + failureThreshold: 12 readinessProbe: httpGet: path: /health port: http + timeoutSeconds: 5 + periodSeconds: 5 + failureThreshold: 6 volumeMounts: - name: tmp mountPath: /tmp