diff --git a/charts/ecr-exporter/Chart.yaml b/charts/ecr-exporter/Chart.yaml index 9060d12..b9f3a46 100644 --- a/charts/ecr-exporter/Chart.yaml +++ b/charts/ecr-exporter/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 @@ -39,4 +39,4 @@ maintainers: annotations: artifacthub.io/changes: | - - Update README + - increase timeoutSeconds on liveness and readiness probes diff --git a/charts/ecr-exporter/README.md b/charts/ecr-exporter/README.md index b3e6923..45478db 100644 --- a/charts/ecr-exporter/README.md +++ b/charts/ecr-exporter/README.md @@ -1,6 +1,6 @@ # ecr-exporter -![Version: 0.2.1](https://img.shields.io/badge/Version-0.2.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.3](https://img.shields.io/badge/AppVersion-0.1.3-informational?style=flat-square) +![Version: 0.2.2](https://img.shields.io/badge/Version-0.2.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.3](https://img.shields.io/badge/AppVersion-0.1.3-informational?style=flat-square) A Helm chart for the AWS ECR Prometheus exporter diff --git a/charts/ecr-exporter/templates/deployment.yaml b/charts/ecr-exporter/templates/deployment.yaml index cbd1e88..d65f0ed 100644 --- a/charts/ecr-exporter/templates/deployment.yaml +++ b/charts/ecr-exporter/templates/deployment.yaml @@ -43,10 +43,14 @@ spec: httpGet: path: /metrics port: http + periodSeconds: 10 + timeoutSeconds: 5 readinessProbe: httpGet: path: /metrics port: http + periodSeconds: 10 + timeoutSeconds: 5 resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.env }}