Skip to content

Commit

Permalink
Merge branch 'dev' into dynamic-resources
Browse files Browse the repository at this point in the history
  • Loading branch information
jclapis committed Jul 22, 2024
2 parents 31529f1 + c99f7df commit d45aaaa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion config/exporter-config.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

const (
// Tags
exporterTag string = "prom/node-exporter:v1.8.1"
exporterTag string = "prom/node-exporter:v1.8.2"
)

// Configuration for Exporter
Expand Down
6 changes: 2 additions & 4 deletions config/lodestar-bn-config.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ import (
)

const (
lodestarBnTagTest string = "chainsafe/lodestar:v1.20.0"
lodestarBnTagProd string = "chainsafe/lodestar:v1.20.0"
lodestarBnTag string = "chainsafe/lodestar:v1.20.2"
)

// Configuration for the Lodestar BN
Expand Down Expand Up @@ -48,8 +47,7 @@ func NewLodestarBnConfig() *LodestarBnConfig {
OverwriteOnUpgrade: true,
},
Default: map[Network]string{
Network_Mainnet: lodestarBnTagProd,
Network_Holesky: lodestarBnTagTest,
Network_All: lodestarBnTag,
},
},

Expand Down
6 changes: 2 additions & 4 deletions config/lodestar-vc-config.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ import (
)

const (
lodestarVcTagTest string = lodestarBnTagTest
lodestarVcTagProd string = lodestarBnTagProd
lodestarVcTag string = lodestarBnTag
)

// Configuration for the Lodestar VC
Expand All @@ -31,8 +30,7 @@ func NewLodestarVcConfig() *LodestarVcConfig {
OverwriteOnUpgrade: true,
},
Default: map[Network]string{
Network_Mainnet: lodestarVcTagProd,
Network_Holesky: lodestarVcTagTest,
Network_All: lodestarVcTag,
},
},

Expand Down

0 comments on commit d45aaaa

Please sign in to comment.