Commit b950b68 1 parent 34b6e0b commit b950b68 Copy full SHA for b950b68
File tree 4 files changed +12
-10
lines changed
charts/smart-contract-verifier-http
4 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ home: https://github.com/blockscout/blockscout-rs/tree/main/smart-contract-verif
6
6
sources :
7
7
- https://github.com/blockscout/blockscout-rs/tree/main/smart-contract-verifier-http
8
8
type : application
9
- version : 0.1.1
9
+ version : 0.1.2
10
10
maintainers :
11
11
- name : skylenet
12
12
Original file line number Diff line number Diff line change 1
1
2
2
# smart-contract-verifier-http
3
3
4
- ![ Version: 0.1.1 ] ( https://img.shields.io/badge/Version-0.1.1 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
4
+ ![ Version: 0.1.2 ] ( https://img.shields.io/badge/Version-0.1.2 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
5
5
6
6
Smart-contract verification service. Runs as an HTTP server and allows making verification requests through REST API.
7
7
@@ -22,7 +22,7 @@ Smart-contract verification service. Runs as an HTTP server and allows making ve
22
22
| customArgs | list | ` [] ` | Custom args for the smart-contract-verifier-http container |
23
23
| customCommand | list | ` [] ` | Command replacement for the smart-contract-verifier-http container |
24
24
| extraContainers | list | ` [] ` | Additional containers |
25
- | extraEnv | list | ` [] ` | Additional env variables |
25
+ | extraEnv | list | ` [{"name":"SMART_CONTRACT_VERIFIER__CONFIG","value":"/app/config.toml"} ] ` | Additional env variables |
26
26
| extraPorts | list | ` [] ` | Additional ports. Useful when using extraContainers |
27
27
| extraVolumeMounts | list | ` [] ` | Additional volume mounts |
28
28
| extraVolumes | list | ` [] ` | Additional volumes |
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ Create the name of the service account to use
62
62
{ {- end } }
63
63
64
64
{ {- define " smart-contract-verifier-http.httpPort" -} }
65
- { {- printf " 8043 " -} }
65
+ { {- printf " 8050 " -} }
66
66
{ {- end -} }
67
67
68
68
{ {- define " smart-contract-verifier-http.metricsPort" -} }
Original file line number Diff line number Diff line change @@ -27,11 +27,17 @@ customCommand: [] # Only change this if you need to change the default command
27
27
secretEnv :
28
28
# SOME_SECRET_ENV_VAR: some-secret
29
29
30
+ # -- Additional env variables
31
+ extraEnv :
32
+ - name : SMART_CONTRACT_VERIFIER__CONFIG
33
+ value : /app/config.toml
34
+
30
35
# -- Config file
31
36
# @default -- See `values.yaml`
32
37
config : |
33
- [server]
34
- addr = "0.0.0.0:8043"
38
+ [server.http]
39
+ enabled = true
40
+ addr = "0.0.0.0:{{ include "smart-contract-verifier-http.httpPort" . }}"
35
41
36
42
[compilers]
37
43
# if omitted, number of CPU cores would be used
@@ -228,10 +234,6 @@ extraVolumeMounts: []
228
234
# -- Additional ports. Useful when using extraContainers
229
235
extraPorts : []
230
236
231
- # -- Additional env variables
232
- extraEnv : []
233
-
234
-
235
237
serviceMonitor :
236
238
# -- If true, a ServiceMonitor CRD is created for a prometheus operator
237
239
# https://github.com/coreos/prometheus-operator
You can’t perform that action at this time.
0 commit comments