Skip to content

Commit ee1597a

Browse files
Merge pull request #7 from aws-exporters/increase_probe_timeouts
chore: set probe timeouts
2 parents facdb8d + 005c17f commit ee1597a

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

charts/ecr-exporter/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.2.1
18+
version: 0.2.2
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
@@ -39,4 +39,4 @@ maintainers:
3939

4040
annotations:
4141
artifacthub.io/changes: |
42-
- Update README
42+
- increase timeoutSeconds on liveness and readiness probes

charts/ecr-exporter/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ecr-exporter
22

3-
![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)
3+
![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)
44

55
A Helm chart for the AWS ECR Prometheus exporter
66

charts/ecr-exporter/templates/deployment.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,14 @@ spec:
4343
httpGet:
4444
path: /metrics
4545
port: http
46+
periodSeconds: 10
47+
timeoutSeconds: 5
4648
readinessProbe:
4749
httpGet:
4850
path: /metrics
4951
port: http
52+
periodSeconds: 10
53+
timeoutSeconds: 5
5054
resources:
5155
{{- toYaml .Values.resources | nindent 12 }}
5256
{{- with .Values.env }}

0 commit comments

Comments
 (0)