Skip to content

Commit 0d04c5d

Browse files
authored
Update crust to use latest images (#452)
1 parent 097a6f3 commit 0d04c5d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

infra/apps/blockexplorer/callisto/config/config.tmpl.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ node:
3232
address: {{ .Cored.Host }}:{{ .Cored.PortGRPC }}
3333
insecure: true
3434
api:
35-
address: {{ .Cored.Host }}:{{ .Cored.PortAPI }}
35+
address: http://{{ .Cored.Host }}:{{ .Cored.PortAPI }}
3636
parsing:
3737
workers: 1
3838
start_height: 1

infra/apps/callisto/callisto.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ func (j Callisto) Config() Config {
9898
// Deployment returns deployment of callisto.
9999
func (j Callisto) Deployment() infra.Deployment {
100100
return infra.Deployment{
101-
Image: "coreumfoundation/callisto:0c415b80",
101+
Image: "coreumfoundation/callisto:latest",
102102
Name: j.Name(),
103103
Info: j.config.AppInfo,
104104
Volumes: []infra.Volume{

infra/apps/hasura/hasura.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ func (h Hasura) Info() infra.DeploymentInfo {
6262
// Deployment returns deployment of hasura.
6363
func (h Hasura) Deployment() infra.Deployment {
6464
return infra.Deployment{
65-
Image: "hasura:znet",
65+
Image: "coreumfoundation/hasura:latest",
6666
EnvVarsFunc: func() []infra.EnvVar {
6767
return []infra.EnvVar{
6868
{

0 commit comments

Comments
 (0)