File tree 4 files changed +13
-0
lines changed
4 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 57
57
secretKeyRef :
58
58
name : validators-private-keys
59
59
key : " 001"
60
+ - name : POCKET_IBC_HOST_PRIVATE_KEY
61
+ valueFrom :
62
+ secretKeyRef :
63
+ name : validators-private-keys
64
+ key : " 001"
60
65
- name : POSTGRES_USER
61
66
value : " postgres"
62
67
- name : POSTGRES_PASSWORD
Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ privateKeySecretKeyRef:
77
77
| config.telemetry.endpoint | string | `"/metrics"` | |
78
78
| config.utility.max_mempool_transaction_bytes | int | `1073741824` | |
79
79
| config.utility.max_mempool_transactions | int | `9000` | |
80
+ | config.validator.enabled | bool | `true` | |
80
81
| externalPostgresql.database | string | `""` | name of the external database |
81
82
| externalPostgresql.enabled | bool | `false` | use external postgres database |
82
83
| externalPostgresql.host | string | `""` | host of the external database |
Original file line number Diff line number Diff line change 81
81
secretKeyRef :
82
82
name : {{ .Values.privateKeySecretKeyRef.name | quote }}
83
83
key : {{ .Values.privateKeySecretKeyRef.key | quote }}
84
+ - name : POCKET_IBC_HOST_PRIVATE_KEY
85
+ valueFrom :
86
+ secretKeyRef :
87
+ name : {{ .Values.privateKeySecretKeyRef.name | quote }}
88
+ key : {{ .Values.privateKeySecretKeyRef.key | quote }}
84
89
{{ end }}
85
90
- name : POSTGRES_USER
86
91
{{ include "pocket.postgresqlUserValueOrSecretRef" . | nindent 14 }}
Original file line number Diff line number Diff line change @@ -113,6 +113,8 @@ config:
113
113
port : " 50832"
114
114
timeout : 30000
115
115
use_cors : false
116
+ validator :
117
+ enabled : true
116
118
servicer :
117
119
enabled : false
118
120
fisherman :
You can’t perform that action at this time.
0 commit comments