Commit 893be75 1 parent 4c8b5f5 commit 893be75 Copy full SHA for 893be75
File tree 16 files changed +64
-16
lines changed
16 files changed +64
-16
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: xatu-discovery
3
3
description : Ethereum p2p monitoring tool that discovers node records.
4
4
home : https://github.com/ethpandaops/xatu
5
5
type : application
6
- version : 0.0.2
6
+ version : 0.0.3
7
7
maintainers :
8
8
- name : samcm
9
9
Original file line number Diff line number Diff line change 1
1
2
2
# xatu-discovery
3
3
4
- ![ Version: 0.0.2 ] ( https://img.shields.io/badge/Version-0.0.2 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
4
+ ![ Version: 0.0.3 ] ( https://img.shields.io/badge/Version-0.0.3 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
5
5
6
6
Ethereum p2p monitoring tool that discovers node records.
7
7
@@ -65,6 +65,7 @@ Ethereum p2p monitoring tool that discovers node records.
65
65
| image.tag | string | ` "latest" ` | xatu container image tag |
66
66
| imagePullSecrets | list | ` [] ` | Image pull secrets for Docker images |
67
67
| initContainers | list | ` [] ` | Additional init containers |
68
+ | lifecycle | object | See ` values.yaml ` | Lifecycle hooks |
68
69
| livenessProbe | object | See ` values.yaml ` | Liveness probe |
69
70
| nameOverride | string | ` "" ` | Overrides the chart's name |
70
71
| nodeSelector | object | ` {} ` | Node selector for pods |
@@ -91,5 +92,5 @@ Ethereum p2p monitoring tool that discovers node records.
91
92
| serviceMonitor.scheme | string | ` "http" ` | ServiceMonitor scheme |
92
93
| serviceMonitor.scrapeTimeout | string | ` "30s" ` | ServiceMonitor scrape timeout |
93
94
| serviceMonitor.tlsConfig | object | ` {} ` | ServiceMonitor TLS configuration |
94
- | terminationGracePeriodSeconds | int | ` 30 ` | How long to wait until the pod is forcefully terminated |
95
+ | terminationGracePeriodSeconds | int | ` 90 ` | How long to wait until the pod is forcefully terminated |
95
96
| tolerations | list | ` [] ` | Tolerations for pods |
Original file line number Diff line number Diff line change 76
76
{{- toYaml .Values.livenessProbe | nindent 12 }}
77
77
readinessProbe :
78
78
{{- toYaml .Values.readinessProbe | nindent 12 }}
79
+ lifecycle :
80
+ {{- toYaml .Values.lifecycle | nindent 12 }}
79
81
resources :
80
82
{{- toYaml .Values.resources | nindent 12 }}
81
83
env :
Original file line number Diff line number Diff line change @@ -167,8 +167,17 @@ serviceAccount:
167
167
# If not set and create is true, a name is generated using the fullname template
168
168
name : " "
169
169
170
+ # -- Lifecycle hooks
171
+ # @default -- See `values.yaml`
172
+ lifecycle :
173
+ preStop :
174
+ exec :
175
+ command :
176
+ - /bin/sleep
177
+ - " 30"
178
+
170
179
# -- How long to wait until the pod is forcefully terminated
171
- terminationGracePeriodSeconds : 30
180
+ terminationGracePeriodSeconds : 90
172
181
173
182
# -- Tolerations for pods
174
183
# # ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: xatu-mimicry
3
3
description : Ethereum p2p monitoring tool that collects data from the execution layer.
4
4
home : https://github.com/ethpandaops/xatu
5
5
type : application
6
- version : 0.0.2
6
+ version : 0.0.3
7
7
maintainers :
8
8
- name : samcm
9
9
Original file line number Diff line number Diff line change 1
1
2
2
# xatu-mimicry
3
3
4
- ![ Version: 0.0.2 ] ( https://img.shields.io/badge/Version-0.0.2 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
4
+ ![ Version: 0.0.3 ] ( https://img.shields.io/badge/Version-0.0.3 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
5
5
6
6
Ethereum p2p monitoring tool that collects data from the execution layer.
7
7
@@ -43,6 +43,7 @@ Ethereum p2p monitoring tool that collects data from the execution layer.
43
43
| image.tag | string | ` "latest" ` | xatu container image tag |
44
44
| imagePullSecrets | list | ` [] ` | Image pull secrets for Docker images |
45
45
| initContainers | list | ` [] ` | Additional init containers |
46
+ | lifecycle | object | See ` values.yaml ` | Lifecycle hooks |
46
47
| livenessProbe | object | See ` values.yaml ` | Liveness probe |
47
48
| nameOverride | string | ` "" ` | Overrides the chart's name |
48
49
| nodeSelector | object | ` {} ` | Node selector for pods |
@@ -69,5 +70,5 @@ Ethereum p2p monitoring tool that collects data from the execution layer.
69
70
| serviceMonitor.scheme | string | ` "http" ` | ServiceMonitor scheme |
70
71
| serviceMonitor.scrapeTimeout | string | ` "30s" ` | ServiceMonitor scrape timeout |
71
72
| serviceMonitor.tlsConfig | object | ` {} ` | ServiceMonitor TLS configuration |
72
- | terminationGracePeriodSeconds | int | ` 30 ` | How long to wait until the pod is forcefully terminated |
73
+ | terminationGracePeriodSeconds | int | ` 90 ` | How long to wait until the pod is forcefully terminated |
73
74
| tolerations | list | ` [] ` | Tolerations for pods |
Original file line number Diff line number Diff line change 76
76
{{- toYaml .Values.livenessProbe | nindent 12 }}
77
77
readinessProbe :
78
78
{{- toYaml .Values.readinessProbe | nindent 12 }}
79
+ lifecycle :
80
+ {{- toYaml .Values.lifecycle | nindent 12 }}
79
81
resources :
80
82
{{- toYaml .Values.resources | nindent 12 }}
81
83
env :
Original file line number Diff line number Diff line change @@ -127,8 +127,17 @@ serviceAccount:
127
127
# If not set and create is true, a name is generated using the fullname template
128
128
name : " "
129
129
130
+ # -- Lifecycle hooks
131
+ # @default -- See `values.yaml`
132
+ lifecycle :
133
+ preStop :
134
+ exec :
135
+ command :
136
+ - /bin/sleep
137
+ - " 30"
138
+
130
139
# -- How long to wait until the pod is forcefully terminated
131
- terminationGracePeriodSeconds : 30
140
+ terminationGracePeriodSeconds : 90
132
141
133
142
# -- Tolerations for pods
134
143
# # ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: xatu-sentry
3
3
description : Ethereum p2p monitoring tool that runs along side a Ethereum consensus client and collects data via the consensus client's Beacon API.
4
4
home : https://github.com/ethpandaops/xatu
5
5
type : application
6
- version : 0.0.3
6
+ version : 0.0.4
7
7
maintainers :
8
8
- name : samcm
9
9
Original file line number Diff line number Diff line change 1
1
2
2
# xatu-sentry
3
3
4
- ![ Version: 0.0.3 ] ( https://img.shields.io/badge/Version-0.0.3 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
4
+ ![ Version: 0.0.4 ] ( https://img.shields.io/badge/Version-0.0.4 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
5
5
6
6
Ethereum p2p monitoring tool that runs along side a Ethereum consensus client and collects data via the consensus client's Beacon API.
7
7
@@ -41,6 +41,7 @@ Ethereum p2p monitoring tool that runs along side a Ethereum consensus client an
41
41
| image.tag | string | ` "latest" ` | xatu container image tag |
42
42
| imagePullSecrets | list | ` [] ` | Image pull secrets for Docker images |
43
43
| initContainers | list | ` [] ` | Additional init containers |
44
+ | lifecycle | object | See ` values.yaml ` | Lifecycle hooks |
44
45
| livenessProbe | object | See ` values.yaml ` | Liveness probe |
45
46
| nameOverride | string | ` "" ` | Overrides the chart's name |
46
47
| nodeSelector | object | ` {} ` | Node selector for pods |
@@ -67,5 +68,5 @@ Ethereum p2p monitoring tool that runs along side a Ethereum consensus client an
67
68
| serviceMonitor.scheme | string | ` "http" ` | ServiceMonitor scheme |
68
69
| serviceMonitor.scrapeTimeout | string | ` "30s" ` | ServiceMonitor scrape timeout |
69
70
| serviceMonitor.tlsConfig | object | ` {} ` | ServiceMonitor TLS configuration |
70
- | terminationGracePeriodSeconds | int | ` 30 ` | How long to wait until the pod is forcefully terminated |
71
+ | terminationGracePeriodSeconds | int | ` 90 ` | How long to wait until the pod is forcefully terminated |
71
72
| tolerations | list | ` [] ` | Tolerations for pods |
Original file line number Diff line number Diff line change 76
76
{{- toYaml .Values.livenessProbe | nindent 12 }}
77
77
readinessProbe :
78
78
{{- toYaml .Values.readinessProbe | nindent 12 }}
79
+ lifecycle :
80
+ {{- toYaml .Values.lifecycle | nindent 12 }}
79
81
resources :
80
82
{{- toYaml .Values.resources | nindent 12 }}
81
83
env :
Original file line number Diff line number Diff line change @@ -123,8 +123,17 @@ serviceAccount:
123
123
# If not set and create is true, a name is generated using the fullname template
124
124
name : " "
125
125
126
+ # -- Lifecycle hooks
127
+ # @default -- See `values.yaml`
128
+ lifecycle :
129
+ preStop :
130
+ exec :
131
+ command :
132
+ - /bin/sleep
133
+ - " 30"
134
+
126
135
# -- How long to wait until the pod is forcefully terminated
127
- terminationGracePeriodSeconds : 30
136
+ terminationGracePeriodSeconds : 90
128
137
129
138
# -- Tolerations for pods
130
139
# # ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: xatu-server
3
3
description : Ethereum p2p monitoring tool that collects events from and controls various Xatu clients.
4
4
home : https://github.com/ethpandaops/xatu
5
5
type : application
6
- version : 0.0.4
6
+ version : 0.0.5
7
7
maintainers :
8
8
- name : samcm
9
9
Original file line number Diff line number Diff line change 1
1
2
2
# xatu-server
3
3
4
- ![ Version: 0.0.4 ] ( https://img.shields.io/badge/Version-0.0.4 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
4
+ ![ Version: 0.0.5 ] ( https://img.shields.io/badge/Version-0.0.5 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
5
5
6
6
Ethereum p2p monitoring tool that collects events from and controls various Xatu clients.
7
7
@@ -58,6 +58,7 @@ Ethereum p2p monitoring tool that collects events from and controls various Xatu
58
58
| ingress.hosts[ 0] .paths | list | ` [] ` | |
59
59
| ingress.tls | list | ` [] ` | Ingress TLS |
60
60
| initContainers | list | ` [] ` | Additional init containers |
61
+ | lifecycle | object | See ` values.yaml ` | Lifecycle hooks |
61
62
| livenessProbe | object | See ` values.yaml ` | Liveness probe |
62
63
| nameOverride | string | ` "" ` | Overrides the chart's name |
63
64
| nodeSelector | object | ` {} ` | Node selector for pods |
@@ -84,5 +85,5 @@ Ethereum p2p monitoring tool that collects events from and controls various Xatu
84
85
| serviceMonitor.scheme | string | ` "http" ` | ServiceMonitor scheme |
85
86
| serviceMonitor.scrapeTimeout | string | ` "30s" ` | ServiceMonitor scrape timeout |
86
87
| serviceMonitor.tlsConfig | object | ` {} ` | ServiceMonitor TLS configuration |
87
- | terminationGracePeriodSeconds | int | ` 30 ` | How long to wait until the pod is forcefully terminated |
88
+ | terminationGracePeriodSeconds | int | ` 90 ` | How long to wait until the pod is forcefully terminated |
88
89
| tolerations | list | ` [] ` | Tolerations for pods |
Original file line number Diff line number Diff line change 82
82
{{- toYaml .Values.livenessProbe | nindent 12 }}
83
83
readinessProbe :
84
84
{{- toYaml .Values.readinessProbe | nindent 12 }}
85
+ lifecycle :
86
+ {{- toYaml .Values.lifecycle | nindent 12 }}
85
87
resources :
86
88
{{- toYaml .Values.resources | nindent 12 }}
87
89
env :
Original file line number Diff line number Diff line change @@ -163,8 +163,17 @@ serviceAccount:
163
163
# If not set and create is true, a name is generated using the fullname template
164
164
name : " "
165
165
166
+ # -- Lifecycle hooks
167
+ # @default -- See `values.yaml`
168
+ lifecycle :
169
+ preStop :
170
+ exec :
171
+ command :
172
+ - /bin/sleep
173
+ - " 30"
174
+
166
175
# -- How long to wait until the pod is forcefully terminated
167
- terminationGracePeriodSeconds : 30
176
+ terminationGracePeriodSeconds : 90
168
177
169
178
# -- Tolerations for pods
170
179
# # ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
You can’t perform that action at this time.
0 commit comments