Skip to content

Commit a81910e

Browse files
first major release with v1.0.0 for all el/cl clients (ethpandaops#149)
* first major bump version: besu/erigon/lighthouse/lodestar/nethermind/nimbus/teku/web3signer Co-authored-by: Rafael Matias <[email protected]>
1 parent 52e4d8c commit a81910e

30 files changed

+62
-45
lines changed

charts/besu/Chart.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ icon: https://launchpad.ethereum.org/static/media/hyperledger-besu-circle.b96368
88
sources:
99
- https://github.com/hyperledger/besu
1010
type: application
11-
version: 0.3.9
11+
version: 1.0.0
1212
maintainers:
1313
- name: skylenet
1414
15+
- name: barnabasbusa
16+

charts/besu/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# besu
33

4-
![Version: 0.3.9](https://img.shields.io/badge/Version-0.3.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
4+
![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
55

66
An Ethereum execution layer client designed to be enterprise-friendly for both public and private, permissioned network use cases. Besu is written in Java and released under the Apache 2.0 Licence.
77

@@ -30,7 +30,7 @@ An Ethereum execution layer client designed to be enterprise-friendly for both p
3030
| httpPort | int | `8545` | HTTP Port |
3131
| image.pullPolicy | string | `"IfNotPresent"` | besu container pull policy |
3232
| image.repository | string | `"hyperledger/besu"` | besu container image repository |
33-
| image.tag | string | `"22.10.3"` | besu container image tag |
33+
| image.tag | string | `"latest"` | besu container image tag |
3434
| imagePullSecrets | list | `[]` | Image pull secrets for Docker images |
3535
| ingress.annotations | object | `{}` | Annotations for Ingress |
3636
| ingress.enabled | bool | `false` | Ingress resource for the HTTP API |

charts/besu/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ image:
1111
# -- besu container image repository
1212
repository: hyperledger/besu
1313
# -- besu container image tag
14-
tag: 22.10.3
14+
tag: latest
1515
# -- besu container pull policy
1616
pullPolicy: IfNotPresent
1717

charts/erigon/Chart.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ icon: https://pbs.twimg.com/profile_images/1420080204148576274/-4OFIs2x_400x400.
66
sources:
77
- https://github.com/ledgerwatch/erigon
88
type: application
9-
version: 0.3.8
9+
version: 1.0.0
1010
maintainers:
1111
- name: skylenet
1212
13+
- name: barnabasbusa
14+

charts/erigon/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# erigon
33

4-
![Version: 0.3.8](https://img.shields.io/badge/Version-0.3.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
4+
![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
55

66
Erigon, formerly known as Turbo‐Geth, is a fork of Go Ethereum (geth) oriented toward speed and disk‐space efficiency. Erigon is a completely re-architected implementation of Ethereum, currently written in Go but with implementations in other languages planned. Erigon's goal is to provide a faster, more modular, and more optimized implementation of Ethereum.
77

@@ -32,7 +32,7 @@ Erigon, formerly known as Turbo‐Geth, is a fork of Go Ethereum (geth) oriented
3232
| httpPort | int | `8545` | HTTP Port |
3333
| image.pullPolicy | string | `"IfNotPresent"` | erigon container pull policy |
3434
| image.repository | string | `"thorax/erigon"` | erigon container image repository |
35-
| image.tag | string | `"v2.33.1"` | erigon container image tag |
35+
| image.tag | string | `"stable"` | erigon container image tag |
3636
| imagePullSecrets | list | `[]` | Image pull secrets for Docker images |
3737
| ingress.annotations | object | `{}` | Annotations for Ingress |
3838
| ingress.enabled | bool | `false` | Ingress resource for the HTTP API |

charts/erigon/values.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ image:
1111
# -- erigon container image repository
1212
repository: thorax/erigon
1313
# -- erigon container image tag
14-
tag: v2.33.1
14+
tag: stable
1515
# -- erigon container pull policy
1616
pullPolicy: IfNotPresent
1717

@@ -89,15 +89,15 @@ annotations: {}
8989
# @default -- See `values.yaml`
9090
livenessProbe:
9191
tcpSocket:
92-
port: auth-rpc
92+
port: p2p-tcp
9393
initialDelaySeconds: 60
9494
periodSeconds: 120
9595

9696
# -- Readiness probe
9797
# @default -- See `values.yaml`
9898
readinessProbe:
9999
tcpSocket:
100-
port: auth-rpc
100+
port: p2p-tcp
101101
initialDelaySeconds: 10
102102
periodSeconds: 10
103103

charts/geth/Chart.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ icon: https://launchpad.ethereum.org/static/media/gethereum-mascot-circle.75cbd3
99
sources:
1010
- https://github.com/ethereum/go-ethereum
1111
type: application
12-
version: 0.3.4
12+
version: 1.0.0
1313
maintainers:
1414
- name: skylenet
1515
16+
- name: barnabasbusa
17+

charts/geth/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# geth
33

4-
![Version: 0.3.4](https://img.shields.io/badge/Version-0.3.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
4+
![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
55

66
Go Ethereum (Geth for short) is one of the original implementations of the Ethereum protocol. Currently, it is the most widespread client with the biggest user base and variety of tooling for users and developers. It is written in Go, fully open source and licensed under the GNU LGPL v3
77

@@ -32,7 +32,7 @@ Go Ethereum (Geth for short) is one of the original implementations of the Ether
3232
| httpPort | int | `8545` | HTTP Port |
3333
| image.pullPolicy | string | `"IfNotPresent"` | geth container pull policy |
3434
| image.repository | string | `"ethereum/client-go"` | geth container image repository |
35-
| image.tag | string | `"v1.10.26"` | geth container image tag |
35+
| image.tag | string | `"stable"` | geth container image tag |
3636
| imagePullSecrets | list | `[]` | Image pull secrets for Docker images |
3737
| ingress.annotations | object | `{}` | Annotations for Ingress |
3838
| ingress.enabled | bool | `false` | Ingress resource for the HTTP API |

charts/geth/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ image:
1111
# -- geth container image repository
1212
repository: ethereum/client-go
1313
# -- geth container image tag
14-
tag: v1.10.26
14+
tag: stable
1515
# -- geth container pull policy
1616
pullPolicy: IfNotPresent
1717

charts/lighthouse/Chart.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ icon: https://launchpad.ethereum.org/static/media/lighthouse-circle.e0b82d14.png
66
sources:
77
- https://github.com/sigp/lighthouse
88
type: application
9-
version: 0.2.7
9+
version: 1.0.0
1010
maintainers:
1111
- name: skylenet
1212
13+
- name: barnabasbusa
14+

charts/lighthouse/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# lighthouse
33

4-
![Version: 0.2.7](https://img.shields.io/badge/Version-0.2.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
4+
![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
55

66
An open-source Ethereum 2.0 client, written in Rust
77

@@ -29,7 +29,7 @@ An open-source Ethereum 2.0 client, written in Rust
2929
| httpPort | int | `5052` | HTTP Port |
3030
| image.pullPolicy | string | `"IfNotPresent"` | Lighthouse container pull policy |
3131
| image.repository | string | `"sigp/lighthouse"` | Lighthouse container image repository |
32-
| image.tag | string | `"v3.3.0"` | Lighthouse container image tag |
32+
| image.tag | string | `"latest"` | Lighthouse container image tag |
3333
| imagePullSecrets | list | `[]` | Image pull secrets for Docker images |
3434
| ingress.annotations | object | `{}` | Annotations for Ingress |
3535
| ingress.enabled | bool | `false` | Ingress resource for the HTTP API |

charts/lighthouse/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ image:
1111
# -- Lighthouse container image repository
1212
repository: sigp/lighthouse
1313
# -- Lighthouse container image tag
14-
tag: v3.3.0
14+
tag: latest
1515
# -- Lighthouse container pull policy
1616
pullPolicy: IfNotPresent
1717

charts/lodestar/Chart.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ icon: https://raw.githubusercontent.com/ChainSafe/lodestar/master/assets/lodesta
66
sources:
77
- https://github.com/ChainSafe/lodestar
88
type: application
9-
version: 0.2.8
9+
version: 1.0.0
1010
maintainers:
1111
- name: skylenet
1212
13+
- name: barnabasbusa
14+

charts/lodestar/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# lodestar
33

4-
![Version: 0.2.8](https://img.shields.io/badge/Version-0.2.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
4+
![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
55

66
Lodestar is a open-source TypeScript implementation of the Ethereum consensus engine.
77

@@ -29,7 +29,7 @@ Lodestar is a open-source TypeScript implementation of the Ethereum consensus en
2929
| httpPort | int | `9596` | HTTP Port |
3030
| image.pullPolicy | string | `"IfNotPresent"` | lodestar container pull policy |
3131
| image.repository | string | `"chainsafe/lodestar"` | lodestar container image repository |
32-
| image.tag | string | `"v1.2.2"` | lodestar container image tag |
32+
| image.tag | string | `"latest"` | lodestar container image tag |
3333
| imagePullSecrets | list | `[]` | Image pull secrets for Docker images |
3434
| ingress.annotations | object | `{}` | Annotations for Ingress |
3535
| ingress.enabled | bool | `false` | Ingress resource for the HTTP API |

charts/lodestar/values.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ image:
1111
# -- lodestar container image repository
1212
repository: chainsafe/lodestar
1313
# -- lodestar container image tag
14-
tag: v1.2.2
15-
14+
tag: latest
1615
# -- lodestar container pull policy
1716
pullPolicy: IfNotPresent
1817

charts/nethermind/Chart.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ icon: https://launchpad.ethereum.org/static/media/nethermind-circle.fbbf1a32.png
77
sources:
88
- https://github.com/NethermindEth/nethermind
99
type: application
10-
version: 0.3.7
10+
version: 1.0.0
1111
maintainers:
1212
- name: skylenet
1313
14+
- name: barnabasbusa
15+

charts/nethermind/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# nethermind
33

4-
![Version: 0.3.7](https://img.shields.io/badge/Version-0.3.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
4+
![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
55

66
Nethermind is an Ethereum execution layer implementation created with the C# .NET tech stack, running on all major platforms including ARM.
77

@@ -30,7 +30,7 @@ Nethermind is an Ethereum execution layer implementation created with the C# .NE
3030
| httpPort | int | `8545` | HTTP Port |
3131
| image.pullPolicy | string | `"IfNotPresent"` | nethermind container pull policy |
3232
| image.repository | string | `"nethermind/nethermind"` | nethermind container image repository |
33-
| image.tag | string | `"1.15.0"` | nethermind container image tag |
33+
| image.tag | string | `"latest"` | nethermind container image tag |
3434
| imagePullSecrets | list | `[]` | Image pull secrets for Docker images |
3535
| ingress.annotations | object | `{}` | Annotations for Ingress |
3636
| ingress.enabled | bool | `false` | Ingress resource for the HTTP API |

charts/nethermind/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ image:
1111
# -- nethermind container image repository
1212
repository: nethermind/nethermind
1313
# -- nethermind container image tag
14-
tag: 1.15.0
14+
tag: latest
1515
# -- nethermind container pull policy
1616
pullPolicy: IfNotPresent
1717

charts/nimbus/Chart.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ icon: https://launchpad.ethereum.org/static/media/nimbus-circle.2752d77b.png
66
sources:
77
- https://github.com/status-im/nimbus-eth2
88
type: application
9-
version: 0.4.9
9+
version: 1.0.0
1010
maintainers:
1111
- name: skylenet
1212
13+
- name: barnabasbusa
14+

charts/nimbus/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# nimbus
33

4-
![Version: 0.4.9](https://img.shields.io/badge/Version-0.4.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
4+
![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
55

66
An open-source Ethereum consensus layer client, written in Java
77

@@ -30,7 +30,7 @@ An open-source Ethereum consensus layer client, written in Java
3030
| httpPort | int | `5052` | HTTP Port |
3131
| image.pullPolicy | string | `"IfNotPresent"` | nimbus container pull policy |
3232
| image.repository | string | `"statusim/nimbus-eth2"` | nimbus container image repository |
33-
| image.tag | string | `"amd64-v22.12.0"` | nimbus container image tag |
33+
| image.tag | string | `"multiarch-latest"` | nimbus container image tag |
3434
| imagePullSecrets | list | `[]` | Image pull secrets for Docker images |
3535
| ingress.annotations | object | `{}` | Annotations for Ingress |
3636
| ingress.enabled | bool | `false` | Ingress resource for the HTTP API |

charts/nimbus/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ image:
1111
# -- nimbus container image repository
1212
repository: statusim/nimbus-eth2
1313
# -- nimbus container image tag
14-
tag: amd64-v22.12.0
14+
tag: multiarch-latest
1515
# -- nimbus container pull policy
1616
pullPolicy: IfNotPresent
1717

charts/prysm/Chart.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ icon: https://launchpad.ethereum.org/static/media/prysmatic-labs-circle.96c803fe
66
sources:
77
- https://github.com/prysmaticlabs/prysm
88
type: application
9-
version: 0.2.7
9+
version: 1.0.0
1010
maintainers:
1111
- name: skylenet
1212
13+
- name: barnabasbusa
14+

charts/prysm/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# prysm
33

4-
![Version: 0.2.7](https://img.shields.io/badge/Version-0.2.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
4+
![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
55

66
An open-source Ethereum 2.0 client, written in Go
77

@@ -28,8 +28,8 @@ An open-source Ethereum 2.0 client, written in Go
2828
| fullnameOverride | string | `""` | Overrides the chart's computed fullname |
2929
| httpPort | int | `3500` | HTTP Port |
3030
| image.pullPolicy | string | `"IfNotPresent"` | Prysm container pull policy |
31-
| image.repository | string | `"samcm/prysm-debian"` | Prysm container image repository |
32-
| image.tag | string | `"v3.2.0"` | |
31+
| image.repository | string | `"ethpandaops/prysm"` | Prysm container image repository |
32+
| image.tag | string | `"master"` | |
3333
| imagePullSecrets | list | `[]` | Image pull secrets for Docker images |
3434
| ingress.annotations | object | `{}` | Annotations for Ingress |
3535
| ingress.enabled | bool | `false` | Ingress resource for the HTTP API |

charts/prysm/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ replicas: 1
1010
image:
1111
# -- Prysm container image repository
1212
#repository: gcr.io/prysmaticlabs/prysm/beacon-chain
13-
repository: samcm/prysm-debian
13+
repository: ethpandaops/prysm
1414
# Note: The official beacon-chain image from prysmaticlabs doesn't contain any shell (`sh`)
1515
# which is required to detect the NodePorts when using `p2pNodePort.enabled=true`. See
1616
# the following example on how to create your own: https://github.com/skylenet/prysm-debian-docker/blob/master/Dockerfile
1717
# When using a validator:
1818
# repository: gcr.io/prysmaticlabs/prysm/validator
1919
# -- Prysm container image tag
20-
tag: v3.2.0
20+
tag: master
2121
# -- Prysm container pull policy
2222
pullPolicy: IfNotPresent
2323

charts/teku/Chart.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ icon: https://launchpad.ethereum.org/static/media/pegasys-teku-circle.4147bb69.p
66
sources:
77
- https://github.com/Consensys/teku/
88
type: application
9-
version: 0.2.9
9+
version: 1.0.0
1010
maintainers:
1111
- name: skylenet
1212
13+
- name: barnabasbusa
14+

charts/teku/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# teku
33

4-
![Version: 0.2.9](https://img.shields.io/badge/Version-0.2.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
4+
![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
55

66
An open-source Ethereum 2.0 client, written in Java
77

@@ -29,7 +29,7 @@ An open-source Ethereum 2.0 client, written in Java
2929
| httpPort | int | `5051` | HTTP Port |
3030
| image.pullPolicy | string | `"IfNotPresent"` | teku container pull policy |
3131
| image.repository | string | `"consensys/teku"` | teku container image repository |
32-
| image.tag | string | `"22.12.0"` | teku container image tag |
32+
| image.tag | string | `"latest"` | teku container image tag |
3333
| imagePullSecrets | list | `[]` | Image pull secrets for Docker images |
3434
| ingress.annotations | object | `{}` | Annotations for Ingress |
3535
| ingress.enabled | bool | `false` | Ingress resource for the HTTP API |

charts/teku/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ image:
1111
# -- teku container image repository
1212
repository: consensys/teku
1313
# -- teku container image tag
14-
tag: 22.12.0
14+
tag: latest
1515
# -- teku container pull policy
1616
pullPolicy: IfNotPresent
1717

charts/web3signer/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: web3signer
33
description: Web3Signer is capable of signing on multiple platforms using private keys stored in an external vault, or encrypted on a disk.
44
home: https://github.com/Consensys/web3signer/
55
type: application
6-
version: 0.1.1
6+
version: 1.0.0
77
maintainers:
88
- name: barnabasbusa
99

charts/web3signer/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# web3signer
33

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: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
55

66
Web3Signer is capable of signing on multiple platforms using private keys stored in an external vault, or encrypted on a disk.
77

@@ -32,7 +32,7 @@ Web3Signer is capable of signing on multiple platforms using private keys stored
3232
| httpPort | int | `9000` | |
3333
| image.pullPolicy | string | `"IfNotPresent"` | web3signer container pull policy |
3434
| image.repository | string | `"consensys/web3signer"` | web3signer container image repository |
35-
| image.tag | string | `"22.11.0"` | web3signer container image tag |
35+
| image.tag | string | `"latest"` | web3signer container image tag |
3636
| imagePullSecrets | list | `[]` | Image pull secrets for Docker images |
3737
| ingress.annotations | object | `{}` | Annotations for Ingress |
3838
| ingress.enabled | bool | `false` | Ingress resource for the HTTP API |

0 commit comments

Comments
 (0)