Skip to content

Commit be842b2

Browse files
authored
Merge branch 'master' into master
2 parents b6dd41f + 5884c9a commit be842b2

File tree

3 files changed

+20
-12
lines changed

3 files changed

+20
-12
lines changed

stable/field-exporter/Chart.yaml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,14 @@ description: |
44
A chart to install [field-exporter](https://github.com/deliveryhero/field-exporter). This controller is used to fill the gap in [k8s-config-connector](https://github.com/GoogleCloudPlatform/k8s-config-connector) for exporting value from Config Connector managed resources into Secrets and ConfigMaps.
55
66
type: application
7-
version: 1.4.0
7+
version: 1.4.1
88
appVersion: "v1.4.0"
99
home: https://github.com/deliveryhero/field-exporter
1010
sources:
11-
- https://github.com/deliveryhero/field-exporter
11+
- https://github.com/deliveryhero/field-exporter
1212
maintainers:
13-
- name: vzholudev
14-
url: https://github.com/vzholudev
15-
- name: mtahaahmed
16-
url: https://github.com/mtahaahmed
13+
- name: vzholudev
14+
url: https://github.com/vzholudev
1715

1816
annotations:
1917
artifacthub.io/links: |

stable/field-exporter/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# field-exporter
22

3-
![Version: 1.4.0](https://img.shields.io/badge/Version-1.4.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.4.0](https://img.shields.io/badge/AppVersion-v1.4.0-informational?style=flat-square)
3+
![Version: 1.4.1](https://img.shields.io/badge/Version-1.4.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.4.0](https://img.shields.io/badge/AppVersion-v1.4.0-informational?style=flat-square)
44

55
A chart to install [field-exporter](https://github.com/deliveryhero/field-exporter). This controller is used to fill the gap in [k8s-config-connector](https://github.com/GoogleCloudPlatform/k8s-config-connector) for exporting value from Config Connector managed resources into Secrets and ConfigMaps.
66

@@ -17,7 +17,7 @@ helm install --generate-name oci://ghcr.io/deliveryhero/helm-charts/field-export
1717
To install a specific version of this chart:
1818

1919
```console
20-
helm install --generate-name oci://ghcr.io/deliveryhero/helm-charts/field-exporter --version 1.4.0
20+
helm install --generate-name oci://ghcr.io/deliveryhero/helm-charts/field-exporter --version 1.4.1
2121
```
2222

2323
To install the chart with the release name `my-release`:
@@ -80,7 +80,6 @@ helm install my-release oci://ghcr.io/deliveryhero/helm-charts/field-exporter -f
8080
| Name | Email | Url |
8181
| ---- | ------ | --- |
8282
| vzholudev | | <https://github.com/vzholudev> |
83-
| mtahaahmed | | <https://github.com/mtahaahmed> |
8483

8584
## Chart source and versions
8685

stable/field-exporter/templates/deployment.yaml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,21 @@ spec:
3232
value: "true"
3333
image: {{ .Values.controllerManager.manager.image.repository }}:{{ .Values.controllerManager.manager.image.tag
3434
| default .Chart.AppVersion }}
35+
lifecycle:
36+
preStop:
37+
exec:
38+
command:
39+
- /bin/sh
40+
- -c
41+
- sleep 5
3542
livenessProbe:
3643
httpGet:
3744
path: /healthz
3845
port: 8081
39-
initialDelaySeconds: 15
46+
initialDelaySeconds: 30
4047
periodSeconds: 20
48+
timeoutSeconds: 5
49+
failureThreshold: 3
4150
name: manager
4251
ports:
4352
- containerPort: 9443
@@ -47,8 +56,10 @@ spec:
4756
httpGet:
4857
path: /readyz
4958
port: 8081
50-
initialDelaySeconds: 5
59+
initialDelaySeconds: 30
5160
periodSeconds: 10
61+
timeoutSeconds: 5
62+
failureThreshold: 3
5263
resources: {{- toYaml .Values.controllerManager.manager.resources | nindent 10
5364
}}
5465
securityContext: {{- toYaml .Values.controllerManager.manager.containerSecurityContext
@@ -60,7 +71,7 @@ spec:
6071
securityContext:
6172
runAsNonRoot: true
6273
serviceAccountName: {{ include "field-exporter.fullname" . }}-controller-manager
63-
terminationGracePeriodSeconds: 10
74+
terminationGracePeriodSeconds: 30
6475
volumes:
6576
- name: cert
6677
secret:

0 commit comments

Comments
 (0)