Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/lighthouse/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ version: 0.7.2
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
# renovate: image=sigp/lighthouse
appVersion: "v7.1.0"
appVersion: "v8.0.0"
3 changes: 2 additions & 1 deletion charts/lighthouse/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Deploy and scale [Lighthouse](https://github.com/sigp/lighthouse) inside Kubernetes with ease

[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![Version: 0.7.2](https://img.shields.io/badge/Version-0.7.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v7.1.0](https://img.shields.io/badge/AppVersion-v7.1.0-informational?style=flat-square)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![Version: 0.7.2](https://img.shields.io/badge/Version-0.7.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v8.0.0](https://img.shields.io/badge/AppVersion-v8.0.0-informational?style=flat-square)

## Chart Features

Expand Down Expand Up @@ -109,6 +109,7 @@ We do not recommend that you upgrade the application by overriding `image.tag`.
| lighthouse.service.ports.udp-transport | For experimental QUIC protocol support | int | `9001` |
| lighthouse.service.topologyAwareRouting.enabled | | bool | `false` |
| lighthouse.service.type | | string | `"ClusterIP"` |
| lighthouse.superNode | Super Node? post Fusaka, to subscribe and acquire all data one must run a super node | bool | `true` |
| lighthouse.terminationGracePeriodSeconds | Amount of time to wait before force-killing the container | int | `60` |
| lighthouse.tolerations | | list | `[]` |
| lighthouse.volumeClaimSpec | [PersistentVolumeClaimSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#persistentvolumeclaimspec-v1-core) for storage | object | `{"accessModes":["ReadWriteOnce"],"resources":{"requests":{"storage":"3Ti"}},"storageClassName":null}` |
Expand Down
1 change: 1 addition & 0 deletions charts/lighthouse/templates/lighthouse/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ spec:
exec lighthouse beacon_node \
--datadir=/storage \
--prune-blobs={{ $values.pruneBlobs }} \
--super-node={{ $values.superNode }} \
{{- if $values.executionClientUrl }}
--execution-endpoint={{ $values.executionClientUrl }} \
{{- end }}
Expand Down
2 changes: 2 additions & 0 deletions charts/lighthouse/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ lighthouse:
executionClientUrl: "" # e.g. http://erigon:8551
# -- Prune blobs? leave false for an archive node that retains hisotrical blobs
pruneBlobs: false
# -- Super Node? post Fusaka, to subscribe and acquire all data one must run a super node
superNode: true
# -- JWT to use to authenticate with Execution Client. Specify either `existingSecret` OR `fromLiteral`.
jwt:
# -- Load the JWT from an existing Kubernetes Secret. Takes precedence over `fromLiteral` if set.
Expand Down
Loading