Commit cb53cae 1 parent b7718b9 commit cb53cae Copy full SHA for cb53cae
File tree 13 files changed +808
-665
lines changed
13 files changed +808
-665
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ name: Supermq
6
6
description : Event-driven Infrastructure for Modern Cloud
7
7
icon : https://avatars1.githubusercontent.com/u/13207490
8
8
type : application
9
- version : 0.16.3
9
+ version : 0.16.4
10
10
appVersion : " 0.16.0"
11
11
home : https://abstractmachines.fr/supermq.html
12
12
sources :
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 68
68
- containerPort : {{ .Values.adapter_coap.port }}
69
69
name : " tcp-{{ .Values.adapter_coap.port }}"
70
70
protocol : TCP
71
+ livenessProbe :
72
+ httpGet :
73
+ path : /health
74
+ port : {{ .Values.adapter_coap.port }}
75
+ scheme : HTTP
76
+ initialDelaySeconds : 90
77
+ periodSeconds : 10
78
+ failureThreshold : 3
79
+ successThreshold : 1
80
+ timeoutSeconds : 5
81
+ readinessProbe :
82
+ httpGet :
83
+ path : /health
84
+ port : {{ .Values.adapter_coap.port }}
85
+ scheme : HTTP
86
+ initialDelaySeconds : 90
87
+ periodSeconds : 10
88
+ failureThreshold : 3
89
+ successThreshold : 1
90
+ timeoutSeconds : 5
71
91
stdin : true
72
92
tty : true
73
93
{{- with .Values.adapter_coap.nodeSelector }}
Original file line number Diff line number Diff line change 63
63
ports :
64
64
- containerPort : {{ .Values.adapter_http.httpPort }}
65
65
protocol : TCP
66
+ livenessProbe :
67
+ httpGet :
68
+ path : /health
69
+ port : {{ .Values.adapter_http.httpPort }}
70
+ scheme : HTTP
71
+ initialDelaySeconds : 90
72
+ periodSeconds : 10
73
+ failureThreshold : 3
74
+ successThreshold : 1
75
+ timeoutSeconds : 5
76
+ readinessProbe :
77
+ httpGet :
78
+ path : /health
79
+ port : {{ .Values.adapter_http.httpPort }}
80
+ scheme : HTTP
81
+ initialDelaySeconds : 90
82
+ periodSeconds : 10
83
+ failureThreshold : 3
84
+ successThreshold : 1
85
+ timeoutSeconds : 5
66
86
{{- with .Values.adapter_http.nodeSelector }}
67
87
nodeSelector :
68
88
{{- toYaml . | nindent 8 }}
Original file line number Diff line number Diff line change @@ -101,6 +101,26 @@ spec:
101
101
protocol : TCP
102
102
- containerPort : {{ .Values.auth.grpcPort }}
103
103
protocol : TCP
104
+ livenessProbe :
105
+ httpGet :
106
+ path : /health
107
+ port : {{ .Values.auth.httpPort }}
108
+ scheme : HTTP
109
+ initialDelaySeconds : 90
110
+ periodSeconds : 10
111
+ failureThreshold : 3
112
+ successThreshold : 1
113
+ timeoutSeconds : 5
114
+ readinessProbe :
115
+ httpGet :
116
+ path : /health
117
+ port : {{ .Values.auth.httpPort }}
118
+ scheme : HTTP
119
+ initialDelaySeconds : 90
120
+ periodSeconds : 10
121
+ failureThreshold : 3
122
+ successThreshold : 1
123
+ timeoutSeconds : 5
104
124
volumeMounts :
105
125
- name : auth-data
106
126
mountPath : /supermq-data
Original file line number Diff line number Diff line change @@ -100,4 +100,24 @@ spec:
100
100
ports :
101
101
- containerPort : {{ .Values.certs.httpPort }}
102
102
protocol : TCP
103
+ livenessProbe :
104
+ httpGet :
105
+ path : /health
106
+ port : {{ .Values.certs.httpPort }}
107
+ scheme : HTTP
108
+ initialDelaySeconds : 90
109
+ periodSeconds : 10
110
+ failureThreshold : 3
111
+ successThreshold : 1
112
+ timeoutSeconds : 5
113
+ readinessProbe :
114
+ httpGet :
115
+ path : /health
116
+ port : {{ .Values.certs.httpPort }}
117
+ scheme : HTTP
118
+ initialDelaySeconds : 90
119
+ periodSeconds : 10
120
+ failureThreshold : 3
121
+ successThreshold : 1
122
+ timeoutSeconds : 5
103
123
{{- end }}
Original file line number Diff line number Diff line change @@ -111,6 +111,26 @@ spec:
111
111
protocol : TCP
112
112
- containerPort : {{ .Values.channels.grpcPort }}
113
113
protocol : TCP
114
+ livenessProbe :
115
+ httpGet :
116
+ path : /health
117
+ port : {{ .Values.channels.httpPort }}
118
+ scheme : HTTP
119
+ initialDelaySeconds : 90
120
+ periodSeconds : 10
121
+ failureThreshold : 3
122
+ successThreshold : 1
123
+ timeoutSeconds : 5
124
+ readinessProbe :
125
+ httpGet :
126
+ path : /health
127
+ port : {{ .Values.channels.httpPort }}
128
+ scheme : HTTP
129
+ initialDelaySeconds : 90
130
+ periodSeconds : 10
131
+ failureThreshold : 3
132
+ successThreshold : 1
133
+ timeoutSeconds : 5
114
134
volumeMounts :
115
135
- name : spicedb-schema
116
136
mountPath : /schema.zed
Original file line number Diff line number Diff line change @@ -123,6 +123,26 @@ spec:
123
123
protocol : TCP
124
124
- containerPort : {{ .Values.auth.httpPort }}
125
125
protocol : TCP
126
+ livenessProbe :
127
+ httpGet :
128
+ path : /health
129
+ port : {{ .Values.clients.httpPort }}
130
+ scheme : HTTP
131
+ initialDelaySeconds : 90
132
+ periodSeconds : 10
133
+ failureThreshold : 3
134
+ successThreshold : 1
135
+ timeoutSeconds : 5
136
+ readinessProbe :
137
+ httpGet :
138
+ path : /health
139
+ port : {{ .Values.clients.httpPort }}
140
+ scheme : HTTP
141
+ initialDelaySeconds : 90
142
+ periodSeconds : 10
143
+ failureThreshold : 3
144
+ successThreshold : 1
145
+ timeoutSeconds : 5
126
146
volumeMounts :
127
147
- name : spicedb-schema
128
148
mountPath : /schema.zed
Original file line number Diff line number Diff line change @@ -116,6 +116,26 @@ spec:
116
116
protocol : TCP
117
117
- containerPort : {{ .Values.domains.grpcPort }}
118
118
protocol : TCP
119
+ livenessProbe :
120
+ httpGet :
121
+ path : /health
122
+ port : {{ .Values.domains.httpPort }}
123
+ scheme : HTTP
124
+ initialDelaySeconds : 90
125
+ periodSeconds : 10
126
+ failureThreshold : 3
127
+ successThreshold : 1
128
+ timeoutSeconds : 5
129
+ readinessProbe :
130
+ httpGet :
131
+ path : /health
132
+ port : {{ .Values.domains.httpPort }}
133
+ scheme : HTTP
134
+ initialDelaySeconds : 90
135
+ periodSeconds : 10
136
+ failureThreshold : 3
137
+ successThreshold : 1
138
+ timeoutSeconds : 5
119
139
volumes :
120
140
- name : spicedb-schema-zed
121
141
configMap :
Original file line number Diff line number Diff line change @@ -103,6 +103,26 @@ spec:
103
103
protocol : TCP
104
104
- containerPort : {{ .Values.groups.grpcPort }}
105
105
protocol : TCP
106
+ livenessProbe :
107
+ httpGet :
108
+ path : /health
109
+ port : {{ .Values.groups.httpPort }}
110
+ scheme : HTTP
111
+ initialDelaySeconds : 90
112
+ periodSeconds : 10
113
+ failureThreshold : 3
114
+ successThreshold : 1
115
+ timeoutSeconds : 5
116
+ readinessProbe :
117
+ httpGet :
118
+ path : /health
119
+ port : {{ .Values.groups.httpPort }}
120
+ scheme : HTTP
121
+ initialDelaySeconds : 90
122
+ periodSeconds : 10
123
+ failureThreshold : 3
124
+ successThreshold : 1
125
+ timeoutSeconds : 5
106
126
volumeMounts :
107
127
- mountPath : /schema.zed
108
128
name : spicedb-schema-zed
Original file line number Diff line number Diff line change 89
89
ports :
90
90
- containerPort : {{ .Values.journal.httpPort }}
91
91
protocol : TCP
92
+ livenessProbe :
93
+ httpGet :
94
+ path : /health
95
+ port : {{ .Values.journal.httpPort }}
96
+ scheme : HTTP
97
+ initialDelaySeconds : 90
98
+ periodSeconds : 10
99
+ failureThreshold : 3
100
+ successThreshold : 1
101
+ timeoutSeconds : 5
102
+ readinessProbe :
103
+ httpGet :
104
+ path : /health
105
+ port : {{ .Values.journal.httpPort }}
106
+ scheme : HTTP
107
+ initialDelaySeconds : 90
108
+ periodSeconds : 10
109
+ failureThreshold : 3
110
+ successThreshold : 1
111
+ timeoutSeconds : 5
92
112
{{- with .Values.journal.nodeSelector }}
93
113
nodeSelector :
94
114
{{- toYaml . | nindent 8 }}
Original file line number Diff line number Diff line change @@ -126,6 +126,26 @@ spec:
126
126
ports :
127
127
- containerPort : {{ .Values.users.httpPort }}
128
128
protocol : TCP
129
+ livenessProbe :
130
+ httpGet :
131
+ path : /health
132
+ port : {{ .Values.users.httpPort }}
133
+ scheme : HTTP
134
+ initialDelaySeconds : 90
135
+ periodSeconds : 10
136
+ failureThreshold : 3
137
+ successThreshold : 1
138
+ timeoutSeconds : 5
139
+ readinessProbe :
140
+ httpGet :
141
+ path : /health
142
+ port : {{ .Values.users.httpPort }}
143
+ scheme : HTTP
144
+ initialDelaySeconds : 90
145
+ periodSeconds : 10
146
+ failureThreshold : 3
147
+ successThreshold : 1
148
+ timeoutSeconds : 5
129
149
volumeMounts :
130
150
- mountPath : /email.tmpl
131
151
name : users-config
Original file line number Diff line number Diff line change 63
63
ports :
64
64
- containerPort : {{ .Values.adapter_ws.httpPort | int }}
65
65
protocol : TCP
66
+ livenessProbe :
67
+ httpGet :
68
+ path : /health
69
+ port : {{ .Values.adapter_ws.httpPort }}
70
+ scheme : HTTP
71
+ initialDelaySeconds : 90
72
+ periodSeconds : 10
73
+ failureThreshold : 3
74
+ successThreshold : 1
75
+ timeoutSeconds : 5
76
+ readinessProbe :
77
+ httpGet :
78
+ path : /health
79
+ port : {{ .Values.adapter_ws.httpPort }}
80
+ scheme : HTTP
81
+ initialDelaySeconds : 90
82
+ periodSeconds : 10
83
+ failureThreshold : 3
84
+ successThreshold : 1
85
+ timeoutSeconds : 5
66
86
{{- with .Values.domains.nodeSelector }}
67
87
nodeSelector :
68
88
{{- toYaml . | nindent 6 }}
You can’t perform that action at this time.
0 commit comments