diff --git a/.github/workflows/check-typos.yaml b/.github/workflows/check-typos.yaml new file mode 100644 index 00000000..6d6a8587 --- /dev/null +++ b/.github/workflows/check-typos.yaml @@ -0,0 +1,16 @@ +name: Check typos + +on: + pull_request: + branches: + - master + +jobs: + check-typos: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Check for typos + uses: crate-ci/typos@v1.28.4 diff --git a/README.md b/README.md index 277ae43d..6a17c9d9 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ Tooling - [`beacon-metrics-gazer`](charts/beacon-metrics-gazer) - A prometheus exporter for Ethereum validator clients. - [`beaconchain-explorer`](charts/beaconchain-explorer) - Beacon chain block explorer. -- [`blob-me-baby`](charts/blob-me-baby) - Send arbitary blob data in well-formatted blobs +- [`blob-me-baby`](charts/blob-me-baby) - Send arbitrary blob data in well-formatted blobs - [`blobscan-indexer`](charts/blobscan-indexer) - Blobscan-Indexer indexes blobs in MongoDB for use with Blobscan. - [`blobscan`](charts/blobscan) - Blobscan is the first blockchain explorer that helps to navigate and visualize those EIP-4844 blobs. - [`blockscout`](charts/blockscout) - Execution layer block explorer. diff --git a/_typos.toml b/_typos.toml new file mode 100644 index 00000000..dbec60d4 --- /dev/null +++ b/_typos.toml @@ -0,0 +1,7 @@ +[default] +extend-ignore-re = [ + # Ignore Ethereum Node Records (ENR) + "enr:-.*", + # Ignore blutgang config typo + "supress_rpc_check", +] diff --git a/charts/armiarma/Chart.yaml b/charts/armiarma/Chart.yaml index ffef5136..f9ad3b5e 100644 --- a/charts/armiarma/Chart.yaml +++ b/charts/armiarma/Chart.yaml @@ -3,7 +3,7 @@ name: armiarma description: A distributed p2p network monitoring tool home: https://github.com/migalabs/armiarma type: application -version: 0.1.1 +version: 0.1.2 maintainers: - name: samcm email: sam.calder-mason@ethereum.org diff --git a/charts/armiarma/README.md b/charts/armiarma/README.md index 3b6c2686..3b507851 100644 --- a/charts/armiarma/README.md +++ b/charts/armiarma/README.md @@ -1,7 +1,7 @@ # armiarma -![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) +![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) A distributed p2p network monitoring tool @@ -66,5 +66,5 @@ A distributed p2p network monitoring tool | terminationGracePeriodSeconds | int | `30` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | diff --git a/charts/armiarma/values.yaml b/charts/armiarma/values.yaml index ff2ab43b..aaae51d9 100644 --- a/charts/armiarma/values.yaml +++ b/charts/armiarma/values.yaml @@ -177,9 +177,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/assertoor/Chart.yaml b/charts/assertoor/Chart.yaml index c25e8ae6..545b311c 100644 --- a/charts/assertoor/Chart.yaml +++ b/charts/assertoor/Chart.yaml @@ -6,7 +6,7 @@ home: https://github.com/ethpandaops/assertoor sources: - https://github.com/ethpandaops/assertoor type: application -version: 1.0.0 +version: 1.0.1 appVersion: "1.0.0" maintainers: - name: pk910 diff --git a/charts/assertoor/README.md b/charts/assertoor/README.md index 18a0b42f..32219380 100644 --- a/charts/assertoor/README.md +++ b/charts/assertoor/README.md @@ -1,7 +1,7 @@ # assertoor -![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) +![Version: 1.0.1](https://img.shields.io/badge/Version-1.0.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Testing tool that is capable of doing actions and checking conditions on ethereum pos networks. @@ -58,7 +58,7 @@ assertoorTests: | assertoorFrontendEnabled | bool | `true` | Enable assertoor UI | | assertoorMaxConcurrentTests | int | `1` | Maximum number of concurrent tests | | assertoorTestRetentionTime | string | `"720h"` | Test retention time | -| assertoorTests | list | `[]` | assertoor test configurations -- file is the only required field. All other fields default to the values provided in the test file, but can be overriden if needed. | +| assertoorTests | list | `[]` | assertoor test configurations -- file is the only required field. All other fields default to the values provided in the test file, but can be overridden if needed. | | config | string | See `values.yaml` | Config file | | containerSecurityContext | object | See `values.yaml` | The security context for containers | | customArgs | list | `["--config=/config/assertoor-config.yaml"]` | Custom args for the assertoor container | @@ -110,7 +110,7 @@ assertoorTests: | terminationGracePeriodSeconds | int | `30` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | | validatorNamesInventory | string | `""` | This can be a url here for example: -- "https://config.dencun-devnet-8.ethpandaops.io/api/v1/nodes/validator-ranges" -- If you want to use a local range file define it in the values.yaml validatorNamesRanges section | | validatorNamesRanges | string | `"0-1: test\n"` | | diff --git a/charts/assertoor/values.yaml b/charts/assertoor/values.yaml index 1bdd7fd3..bca33651 100644 --- a/charts/assertoor/values.yaml +++ b/charts/assertoor/values.yaml @@ -154,9 +154,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers @@ -226,7 +226,7 @@ globalVariables: walletPrivkey: "feedbeef12340000feedbeef12340000feedbeef12340000feedbeef12340000" # -- assertoor test configurations -# -- file is the only required field. All other fields default to the values provided in the test file, but can be overriden if needed. +# -- file is the only required field. All other fields default to the values provided in the test file, but can be overridden if needed. assertoorTests: [] # -- Config file diff --git a/charts/beacon-metrics-gazer/Chart.yaml b/charts/beacon-metrics-gazer/Chart.yaml index 89f12e60..54619982 100644 --- a/charts/beacon-metrics-gazer/Chart.yaml +++ b/charts/beacon-metrics-gazer/Chart.yaml @@ -3,7 +3,7 @@ name: beacon-metrics-gazer description: Collects network wide participation metrics given a range of indexes home: https://github.com/dapplion/beacon-metrics-gazer type: application -version: 0.1.3 +version: 0.1.4 maintainers: - name: barnabasbusa email: busa.barnabas@gmail.com diff --git a/charts/beacon-metrics-gazer/README.md b/charts/beacon-metrics-gazer/README.md index 5a5051e9..1557efb8 100644 --- a/charts/beacon-metrics-gazer/README.md +++ b/charts/beacon-metrics-gazer/README.md @@ -1,7 +1,7 @@ # beacon-metrics-gazer -![Version: 0.1.3](https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.1.4](https://img.shields.io/badge/Version-0.1.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Collects network wide participation metrics given a range of indexes @@ -72,8 +72,8 @@ Collects network wide participation metrics given a range of indexes | terminationGracePeriodSeconds | int | `30` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | # Example diff --git a/charts/beacon-metrics-gazer/values.yaml b/charts/beacon-metrics-gazer/values.yaml index 96b82a4e..63b841f1 100644 --- a/charts/beacon-metrics-gazer/values.yaml +++ b/charts/beacon-metrics-gazer/values.yaml @@ -171,9 +171,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/beaconchain-explorer/Chart.yaml b/charts/beaconchain-explorer/Chart.yaml index 9584d3c9..7688709d 100644 --- a/charts/beaconchain-explorer/Chart.yaml +++ b/charts/beaconchain-explorer/Chart.yaml @@ -7,7 +7,7 @@ icon: https://pbs.twimg.com/profile_images/1274442538057961474/-cZGkGhP_400x400. sources: - https://github.com/gobitfly/eth2-beaconchain-explorer type: application -version: 0.1.5 +version: 0.1.6 maintainers: - name: skylenet email: rafael@skyle.net diff --git a/charts/beaconchain-explorer/README.md b/charts/beaconchain-explorer/README.md index fd4e4a20..6418ffd7 100644 --- a/charts/beaconchain-explorer/README.md +++ b/charts/beaconchain-explorer/README.md @@ -1,7 +1,7 @@ # beaconchain-explorer -![Version: 0.1.5](https://img.shields.io/badge/Version-0.1.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.1.6](https://img.shields.io/badge/Version-0.1.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Beacon chain explorer built using golang and using a PostgreSQL database for storing and indexing data. @@ -75,8 +75,8 @@ Beacon chain explorer built using golang and using a PostgreSQL database for sto | terminationGracePeriodSeconds | int | `30` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | # Examples diff --git a/charts/beaconchain-explorer/values.yaml b/charts/beaconchain-explorer/values.yaml index 18a25294..257ed069 100644 --- a/charts/beaconchain-explorer/values.yaml +++ b/charts/beaconchain-explorer/values.yaml @@ -14,7 +14,7 @@ image: # -- Custom args for the beaconchain-explorer container customArgs: [] - #- -config-file=/somehwere-else.yaml + #- -config-file=/somewhere-else.yaml #- -output-dir=public # -- Command replacement for the beaconchain-explorer container @@ -195,9 +195,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/besu/Chart.yaml b/charts/besu/Chart.yaml index e96ef6de..194e5392 100644 --- a/charts/besu/Chart.yaml +++ b/charts/besu/Chart.yaml @@ -8,7 +8,7 @@ icon: https://launchpad.ethereum.org/static/media/hyperledger-besu-circle.b96368 sources: - https://github.com/hyperledger/besu type: application -version: 1.0.7 +version: 1.0.8 maintainers: - name: skylenet email: rafael@skyle.net diff --git a/charts/besu/README.md b/charts/besu/README.md index 6d74bdde..07437ceb 100644 --- a/charts/besu/README.md +++ b/charts/besu/README.md @@ -1,7 +1,7 @@ # besu -![Version: 1.0.7](https://img.shields.io/badge/Version-1.0.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 1.0.8](https://img.shields.io/badge/Version-1.0.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) 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. @@ -94,8 +94,8 @@ An Ethereum execution layer client designed to be enterprise-friendly for both p | terminationGracePeriodSeconds | int | `300` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | | wsPort | int | `8546` | WS Port | # Examples diff --git a/charts/besu/values.yaml b/charts/besu/values.yaml index 6e6113e9..eb7532c3 100644 --- a/charts/besu/values.yaml +++ b/charts/besu/values.yaml @@ -206,7 +206,7 @@ rbac: # -- Required ClusterRole rules # @default -- See `values.yaml` rules: - # Required to get information about the serices nodePort. + # Required to get information about the services nodePort. - apiGroups: [""] resources: - "services" @@ -268,9 +268,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/blob-me-baby/Chart.yaml b/charts/blob-me-baby/Chart.yaml index fc422384..4628ae4d 100644 --- a/charts/blob-me-baby/Chart.yaml +++ b/charts/blob-me-baby/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v2 name: blob-me-baby -description: Send arbitary blob data in well-formatted blobs +description: Send arbitrary blob data in well-formatted blobs type: application -version: 0.1.1 +version: 0.1.2 maintainers: - name: barnabasbusa email: busa.barnabas@gmail.com diff --git a/charts/blob-me-baby/README.md b/charts/blob-me-baby/README.md index 9a1f107b..7695361b 100644 --- a/charts/blob-me-baby/README.md +++ b/charts/blob-me-baby/README.md @@ -1,9 +1,9 @@ # blob-me-baby -![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) +![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) -Send arbitary blob data in well-formatted blobs +Send arbitrary blob data in well-formatted blobs ## Values diff --git a/charts/blockscout/Chart.yaml b/charts/blockscout/Chart.yaml index ce7e8d9a..8adf967f 100644 --- a/charts/blockscout/Chart.yaml +++ b/charts/blockscout/Chart.yaml @@ -8,7 +8,7 @@ icon: https://github.com/blockscout/blockscout/raw/master/apps/block_scout_web/a sources: - https://github.com/blockscout/blockscout/ type: application -version: 0.2.2 +version: 0.2.3 maintainers: - name: skylenet email: rafael@skyle.net diff --git a/charts/blockscout/README.md b/charts/blockscout/README.md index 767b0b6c..1a0258dd 100644 --- a/charts/blockscout/README.md +++ b/charts/blockscout/README.md @@ -1,7 +1,7 @@ # blockscout -![Version: 0.2.2](https://img.shields.io/badge/Version-0.2.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.2.3](https://img.shields.io/badge/Version-0.2.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) BlockScout provides a comprehensive, easy-to-use interface for users to view, confirm, and inspect transactions on EVM (Ethereum Virtual Machine) blockchains @@ -90,8 +90,8 @@ BlockScout provides a comprehensive, easy-to-use interface for users to view, co | terminationGracePeriodSeconds | int | `60` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | # Examples diff --git a/charts/blockscout/values.yaml b/charts/blockscout/values.yaml index 31bae496..75e95448 100644 --- a/charts/blockscout/values.yaml +++ b/charts/blockscout/values.yaml @@ -17,7 +17,7 @@ replicas: 1 # -- Custom args for the blockscout container customArgs: [] - #- -config-file=/somehwere-else.yaml + #- -config-file=/somewhere-else.yaml #- -output-dir=public # -- Command replacement for the blockscout container @@ -191,9 +191,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/blutgang/Chart.yaml b/charts/blutgang/Chart.yaml index 7deda70b..ce59d0e7 100644 --- a/charts/blutgang/Chart.yaml +++ b/charts/blutgang/Chart.yaml @@ -7,7 +7,7 @@ icon: https://github.com/rainshowerLabs/blutgang/assets/55022497/ec668c7a-5f56-4 sources: - https://github.com/rainshowerLabs/blutgang type: application -version: 0.0.11 +version: 0.0.12 maintainers: - name: barnabasbusa email: busa.barnabas@gmail.com diff --git a/charts/blutgang/README.md b/charts/blutgang/README.md index d66b044c..97794332 100644 --- a/charts/blutgang/README.md +++ b/charts/blutgang/README.md @@ -1,7 +1,7 @@ # blutgang -![Version: 0.0.11](https://img.shields.io/badge/Version-0.0.11-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.0.12](https://img.shields.io/badge/Version-0.0.12-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Blutgang is a blazing fast, caching, minimalistic load balancer designed with Ethereum's JSON-RPC in mind. Historical RPC queries are cached in a local database, bypassing the need for slow, repeating calls to your node. @@ -78,8 +78,8 @@ Blutgang is a blazing fast, caching, minimalistic load balancer designed with Et | terminationGracePeriodSeconds | int | `30` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | # Examples ## TODO diff --git a/charts/blutgang/ci/default-values.yaml b/charts/blutgang/ci/default-values.yaml index 275dd674..31e99e64 100644 --- a/charts/blutgang/ci/default-values.yaml +++ b/charts/blutgang/ci/default-values.yaml @@ -24,7 +24,7 @@ config: | expected_block_time = 13000 # Time between health checks in ms health_check_ttl = 2000 - # Supress the health check running info messages + # Suppress the health check running info messages supress_rpc_check = false # Note: the admin namespace contains volatile functions and @@ -64,7 +64,7 @@ config: | [merkle] url = "https://eth.merkle.io" ws_url = "wss://eth.merkle.io" - # The maximum ammount of time we can use this rpc in a row. + # The maximum amount of time we can use this rpc in a row. max_consecutive = 150 - # Max ammount of querries per second. + # Max amount of queries per second. max_per_second = 200 diff --git a/charts/blutgang/values.yaml b/charts/blutgang/values.yaml index b990f73d..ed6715ad 100644 --- a/charts/blutgang/values.yaml +++ b/charts/blutgang/values.yaml @@ -17,7 +17,7 @@ image: # -- Custom args for the blutgang container customArgs: [] - #- -config-file=/somehwere-else.yaml + #- -config-file=/somewhere-else.yaml #- -output-dir=public # -- Command replacement for the blutgang container @@ -60,7 +60,7 @@ config: | expected_block_time = {{ .Values.blutgangNamespace.expected_block_time | default 13000 }} # Time between health checks in ms health_check_ttl = {{ .Values.blutgangNamespace.health_check_ttl | default 2000 }} - # Supress the health check running info messages + # Suppress the health check running info messages supress_rpc_check = {{ .Values.blutgangNamespace.supress_rpc_check | default false }} # Note: the admin namespace contains volatile functions and @@ -97,7 +97,7 @@ config: | # Frequency of flushes in ms flush_every_ms = 240 - # Add seperate RPCs as TOML tables + # Add separate RPCs as TOML tables # DO NOT name an rpc `blutgang`, `admin`, or `sled` {{- range .Values.rpcList }} [{{ .name }}] @@ -107,7 +107,7 @@ config: | {{- end }} # The maximum amount of time we can use this rpc in a row. max_consecutive = {{ .max_consecutive | default 150 }} - # Max amount of querries per second. + # Max amount of queries per second. max_per_second = {{ .max_per_second | default 200 }} {{- end }} @@ -255,9 +255,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/consensus-monitor/Chart.yaml b/charts/consensus-monitor/Chart.yaml index 89f91c4d..bd33be7e 100644 --- a/charts/consensus-monitor/Chart.yaml +++ b/charts/consensus-monitor/Chart.yaml @@ -7,7 +7,7 @@ icon: https://ethereum.org/static/c48a5f760c34dfadcf05a208dab137cc/31987/eth-dia sources: - https://github.com/ralexstokes/ethereum_consensus_monitor/ type: application -version: 0.1.2 +version: 0.1.3 maintainers: - name: skylenet email: rafael@skyle.net diff --git a/charts/consensus-monitor/README.md b/charts/consensus-monitor/README.md index e016114b..699db072 100644 --- a/charts/consensus-monitor/README.md +++ b/charts/consensus-monitor/README.md @@ -1,7 +1,7 @@ # consensus-monitor -![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) +![Version: 0.1.3](https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Web UI to monitor the ethereum consensus nodes via their beaconchain APIs. @@ -56,8 +56,8 @@ Web UI to monitor the ethereum consensus nodes via their beaconchain APIs. | terminationGracePeriodSeconds | int | `30` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | # Examples diff --git a/charts/consensus-monitor/values.yaml b/charts/consensus-monitor/values.yaml index d89e33f5..693194a0 100644 --- a/charts/consensus-monitor/values.yaml +++ b/charts/consensus-monitor/values.yaml @@ -14,7 +14,7 @@ image: # -- Custom args for the consensus-monitor container customArgs: [] - #- -config-file=/somehwere-else.yaml + #- -config-file=/somewhere-else.yaml #- -output-dir=public # -- Command replacement for the consensus-monitor container @@ -161,9 +161,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/dora/Chart.yaml b/charts/dora/Chart.yaml index 1f43e6ef..00437d34 100644 --- a/charts/dora/Chart.yaml +++ b/charts/dora/Chart.yaml @@ -3,7 +3,7 @@ name: dora description: A Beaconchain explorer is a tool that allows users to view and interact with the data on the Ethereum Beacon Chain. It is similar to a blockchain explorer, which allows users to view data on a blockchain such as the current state of transactions and blocks - but focussed on exploring the beaconchain. home: https://github.com/pk910/dora type: application -version: 0.0.5 +version: 0.0.6 maintainers: - name: barnabasbusa email: busa.barnabas@gmail.com diff --git a/charts/dora/README.md b/charts/dora/README.md index aef08da7..e2581c1d 100644 --- a/charts/dora/README.md +++ b/charts/dora/README.md @@ -1,7 +1,7 @@ # dora -![Version: 0.0.5](https://img.shields.io/badge/Version-0.0.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.0.6](https://img.shields.io/badge/Version-0.0.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) A Beaconchain explorer is a tool that allows users to view and interact with the data on the Ethereum Beacon Chain. It is similar to a blockchain explorer, which allows users to view data on a blockchain such as the current state of transactions and blocks - but focussed on exploring the beaconchain. @@ -101,8 +101,8 @@ A Beaconchain explorer is a tool that allows users to view and interact with the | terminationGracePeriodSeconds | int | `30` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | | validatorNamesInventory | string | `""` | This can be a url here for example: -- "https://config.dencun-devnet-8.ethpandaops.io/api/v1/nodes/validator-ranges" -- If you want to use a local range file define it in the values.yaml ranges section | # Example diff --git a/charts/dora/values.yaml b/charts/dora/values.yaml index f85705e8..f3e000ca 100644 --- a/charts/dora/values.yaml +++ b/charts/dora/values.yaml @@ -324,9 +324,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/dshackle/Chart.yaml b/charts/dshackle/Chart.yaml index 36a7b9e0..9496c4d2 100644 --- a/charts/dshackle/Chart.yaml +++ b/charts/dshackle/Chart.yaml @@ -8,7 +8,7 @@ icon: https://avatars.githubusercontent.com/u/49622339?s=200&v=4 sources: - https://github.com/emeraldpay/dshackle type: application -version: 0.1.8 +version: 0.1.9 maintainers: - name: skylenet email: rafael@skyle.net diff --git a/charts/dshackle/README.md b/charts/dshackle/README.md index 04112701..f913e123 100644 --- a/charts/dshackle/README.md +++ b/charts/dshackle/README.md @@ -1,7 +1,7 @@ # dshackle -![Version: 0.1.8](https://img.shields.io/badge/Version-0.1.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.1.9](https://img.shields.io/badge/Version-0.1.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Emerald Dshackle is a Fault Tolerant Load Balancer for Blockchain API. Support for standard Bitcoin and Ethereum JSON RPC API over HTTP and WebSocket. @@ -89,8 +89,8 @@ Emerald Dshackle is a Fault Tolerant Load Balancer for Blockchain API. Support f | terminationGracePeriodSeconds | int | `30` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | # Examples diff --git a/charts/dshackle/values.yaml b/charts/dshackle/values.yaml index 72dd6537..b3e53f87 100644 --- a/charts/dshackle/values.yaml +++ b/charts/dshackle/values.yaml @@ -17,7 +17,7 @@ image: # -- Custom args for the dshackle container customArgs: [] - #- -config-file=/somehwere-else.yaml + #- -config-file=/somewhere-else.yaml #- -output-dir=public # -- Command replacement for the dshackle container @@ -207,9 +207,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/dugtrio/Chart.yaml b/charts/dugtrio/Chart.yaml index 2af65d57..e91bbce7 100644 --- a/charts/dugtrio/Chart.yaml +++ b/charts/dugtrio/Chart.yaml @@ -6,7 +6,7 @@ home: https://github.com/ethpandaops/dugtrio sources: - https://github.com/ethpandaops/dugtrio type: application -version: 0.0.6 +version: 0.0.7 appVersion: "1.0.0" maintainers: - name: pk910 diff --git a/charts/dugtrio/README.md b/charts/dugtrio/README.md index a8532261..939bd55e 100644 --- a/charts/dugtrio/README.md +++ b/charts/dugtrio/README.md @@ -1,7 +1,7 @@ # dugtrio -![Version: 0.0.6](https://img.shields.io/badge/Version-0.0.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.0.7](https://img.shields.io/badge/Version-0.0.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Fault tolerant load balancer for beacon chain RPC apis @@ -97,5 +97,5 @@ endpoints: | terminationGracePeriodSeconds | int | `30` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | diff --git a/charts/dugtrio/values.yaml b/charts/dugtrio/values.yaml index 07103092..d7718100 100644 --- a/charts/dugtrio/values.yaml +++ b/charts/dugtrio/values.yaml @@ -115,9 +115,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/erigon/Chart.yaml b/charts/erigon/Chart.yaml index fcf38dda..74afd5ec 100644 --- a/charts/erigon/Chart.yaml +++ b/charts/erigon/Chart.yaml @@ -6,7 +6,7 @@ icon: https://pbs.twimg.com/profile_images/1420080204148576274/-4OFIs2x_400x400. sources: - https://github.com/ledgerwatch/erigon type: application -version: 1.0.11 +version: 1.0.12 maintainers: - name: skylenet email: rafael@skyle.net diff --git a/charts/erigon/README.md b/charts/erigon/README.md index 54b63f74..ac6cb2b8 100644 --- a/charts/erigon/README.md +++ b/charts/erigon/README.md @@ -1,7 +1,7 @@ # erigon -![Version: 1.0.11](https://img.shields.io/badge/Version-1.0.11-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 1.0.12](https://img.shields.io/badge/Version-1.0.12-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) 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. @@ -102,8 +102,8 @@ Erigon, formerly known as Turbo‐Geth, is a fork of Go Ethereum (geth) oriented | terminationGracePeriodSeconds | int | `300` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | # Examples diff --git a/charts/erigon/values.yaml b/charts/erigon/values.yaml index 83448c9b..ff032efc 100644 --- a/charts/erigon/values.yaml +++ b/charts/erigon/values.yaml @@ -318,9 +318,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/erpc/Chart.yaml b/charts/erpc/Chart.yaml index dcd9ebf6..dcacc575 100644 --- a/charts/erpc/Chart.yaml +++ b/charts/erpc/Chart.yaml @@ -3,7 +3,7 @@ name: erpc description: eRPC is a fault-tolerant EVM RPC proxy and re-org aware permanent caching solution. It is built with read-heavy use-cases in mind such as data indexing and high-load frontend usage. home: https://github.com/erpc/erpc type: application -version: 0.0.2 +version: 0.0.3 maintainers: - name: barnabasbusa email: busa.barnabas@gmail.com diff --git a/charts/erpc/README.md b/charts/erpc/README.md index 41dfe088..5bf6fd35 100644 --- a/charts/erpc/README.md +++ b/charts/erpc/README.md @@ -1,7 +1,7 @@ # erpc -![Version: 0.0.2](https://img.shields.io/badge/Version-0.0.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.0.3](https://img.shields.io/badge/Version-0.0.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) eRPC is a fault-tolerant EVM RPC proxy and re-org aware permanent caching solution. It is built with read-heavy use-cases in mind such as data indexing and high-load frontend usage. @@ -72,8 +72,8 @@ eRPC is a fault-tolerant EVM RPC proxy and re-org aware permanent caching soluti | terminationGracePeriodSeconds | int | `30` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | # Getting Started diff --git a/charts/erpc/values.yaml b/charts/erpc/values.yaml index 3d826163..e62e70dc 100644 --- a/charts/erpc/values.yaml +++ b/charts/erpc/values.yaml @@ -174,9 +174,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/eth2-fork-mon/Chart.yaml b/charts/eth2-fork-mon/Chart.yaml index b616b8c2..3fee4fd3 100644 --- a/charts/eth2-fork-mon/Chart.yaml +++ b/charts/eth2-fork-mon/Chart.yaml @@ -7,7 +7,7 @@ icon: https://ethereum.org/static/c48a5f760c34dfadcf05a208dab137cc/31987/eth-dia sources: - https://github.com/ralexstokes/eth2-fork-mon type: application -version: 0.1.2 +version: 0.1.3 maintainers: - name: skylenet email: rafael@skyle.net diff --git a/charts/eth2-fork-mon/README.md b/charts/eth2-fork-mon/README.md index 8163674e..473b4224 100644 --- a/charts/eth2-fork-mon/README.md +++ b/charts/eth2-fork-mon/README.md @@ -1,7 +1,7 @@ # eth2-fork-mon -![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) +![Version: 0.1.3](https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Simple client/server to track the (real-time) status of a (configurable) set of eth2 beacon nodes. @@ -56,8 +56,8 @@ Simple client/server to track the (real-time) status of a (configurable) set of | terminationGracePeriodSeconds | int | `30` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | # Examples diff --git a/charts/eth2-fork-mon/values.yaml b/charts/eth2-fork-mon/values.yaml index f8299683..0adba2a5 100644 --- a/charts/eth2-fork-mon/values.yaml +++ b/charts/eth2-fork-mon/values.yaml @@ -14,7 +14,7 @@ image: # -- Custom args for the eth2-fork-mon container customArgs: [] - #- -config-file=/somehwere-else.yaml + #- -config-file=/somewhere-else.yaml #- -output-dir=public # -- Command replacement for the eth2-fork-mon container @@ -147,9 +147,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/ethereumjs/Chart.yaml b/charts/ethereumjs/Chart.yaml index a6167be9..a4d5145b 100644 --- a/charts/ethereumjs/Chart.yaml +++ b/charts/ethereumjs/Chart.yaml @@ -7,7 +7,7 @@ icon: https://user-images.githubusercontent.com/47108/78779352-d0839500-796a-11e sources: - https://github.com/ethereumjs/ethereumjs-monorepo type: application -version: 0.0.9 +version: 0.0.10 maintainers: - name: barnabasbusa email: busa.barnabas@gmail.com diff --git a/charts/ethereumjs/README.md b/charts/ethereumjs/README.md index 622f2065..9d30b73e 100644 --- a/charts/ethereumjs/README.md +++ b/charts/ethereumjs/README.md @@ -1,7 +1,7 @@ # ethereumjs -![Version: 0.0.9](https://img.shields.io/badge/Version-0.0.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.0.10](https://img.shields.io/badge/Version-0.0.10-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) The EthereumJS Client is an Ethereum Execution Client (similar to go-ethereum or Nethermind) written in TypeScript/JavaScript, the non-Smart-Contract language Ethereum dApp developers are most familiar with. It is targeted to be a client for research and development and not meant to be used in production on mainnet for the foreseeable future (out of resource and security considerations). @@ -95,8 +95,8 @@ The EthereumJS Client is an Ethereum Execution Client (similar to go-ethereum or | terminationGracePeriodSeconds | int | `300` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | | wsAuthPort | int | `8552` | WS Engine Auth Port | | wsPort | int | `8546` | WS Port | diff --git a/charts/ethereumjs/values.yaml b/charts/ethereumjs/values.yaml index 12b43735..1425ebeb 100644 --- a/charts/ethereumjs/values.yaml +++ b/charts/ethereumjs/values.yaml @@ -207,7 +207,7 @@ rbac: # -- Required ClusterRole rules # @default -- See `values.yaml` rules: - # Required to get information about the serices nodePort. + # Required to get information about the services nodePort. - apiGroups: [""] resources: - services @@ -269,9 +269,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/fauceth/Chart.yaml b/charts/fauceth/Chart.yaml index f7272c52..75ce801c 100644 --- a/charts/fauceth/Chart.yaml +++ b/charts/fauceth/Chart.yaml @@ -7,7 +7,7 @@ icon: https://avatars.githubusercontent.com/u/48826811?s=200&v=4 sources: - https://github.com/komputing/fauceth type: application -version: 0.2.3 +version: 0.2.4 maintainers: - name: skylenet email: rafael@skyle.net diff --git a/charts/fauceth/README.md b/charts/fauceth/README.md index 532bb3b3..5137c2af 100644 --- a/charts/fauceth/README.md +++ b/charts/fauceth/README.md @@ -1,7 +1,7 @@ # fauceth -![Version: 0.2.3](https://img.shields.io/badge/Version-0.2.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.2.4](https://img.shields.io/badge/Version-0.2.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Faucet for EVM chains @@ -55,8 +55,8 @@ Faucet for EVM chains | terminationGracePeriodSeconds | int | `30` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | # Examples diff --git a/charts/fauceth/values.yaml b/charts/fauceth/values.yaml index d85427fc..33b29d95 100644 --- a/charts/fauceth/values.yaml +++ b/charts/fauceth/values.yaml @@ -14,7 +14,7 @@ image: # -- Custom args for the fauceth container customArgs: [] - #- -config-file=/somehwere-else.yaml + #- -config-file=/somewhere-else.yaml #- -output-dir=public # -- Command replacement for the fauceth container @@ -146,9 +146,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/forkmon/Chart.yaml b/charts/forkmon/Chart.yaml index ebc96066..4801c5d5 100644 --- a/charts/forkmon/Chart.yaml +++ b/charts/forkmon/Chart.yaml @@ -3,7 +3,7 @@ name: forkmon description: This is a little tool to keep track on a set of nodes, and see if they keep in step or if they go out of consensus. home: https://github.com/ethereum/nodemonitor type: application -version: 0.1.5 +version: 0.1.6 maintainers: - name: skylenet email: rafael@skyle.net diff --git a/charts/forkmon/README.md b/charts/forkmon/README.md index 6ca1625f..4fa5922c 100644 --- a/charts/forkmon/README.md +++ b/charts/forkmon/README.md @@ -1,7 +1,7 @@ # forkmon -![Version: 0.1.5](https://img.shields.io/badge/Version-0.1.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.1.6](https://img.shields.io/badge/Version-0.1.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) This is a little tool to keep track on a set of nodes, and see if they keep in step or if they go out of consensus. @@ -64,8 +64,8 @@ This is a little tool to keep track on a set of nodes, and see if they keep in s | thirdparty_endpoints | list | `[{"kind":"infura","name":"mainnet-infura","rate_limit":5},{"kind":"alchemy","name":"mainnet-alchemy","rate_limit":5},{"kind":"etherscan","name":"mainnet-etherscan","rate_limit":5}]` | Third party endpoints that you would like to monitor | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | # Examples diff --git a/charts/forkmon/values.yaml b/charts/forkmon/values.yaml index 0a61bdee..e3b51be1 100644 --- a/charts/forkmon/values.yaml +++ b/charts/forkmon/values.yaml @@ -204,9 +204,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/ganache/Chart.yaml b/charts/ganache/Chart.yaml index 15a47dfb..85399b75 100644 --- a/charts/ganache/Chart.yaml +++ b/charts/ganache/Chart.yaml @@ -8,7 +8,7 @@ icon: https://www.trufflesuite.com/img/ganache-logomark.svg sources: - https://github.com/trufflesuite/ganache type: application -version: 0.1.2 +version: 0.1.3 appVersion: "6.12.2" maintainers: - name: skylenet diff --git a/charts/ganache/README.md b/charts/ganache/README.md index 343b9dc3..55985689 100644 --- a/charts/ganache/README.md +++ b/charts/ganache/README.md @@ -1,7 +1,7 @@ # ganache -![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) +![Version: 0.1.3](https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Ganache is an Ethereum simulator that makes developing Ethereum applications faster, easier, and safer. It includes all popular RPC functions and features (like events) and can be run deterministically to make development a breeze. @@ -66,8 +66,8 @@ Ganache is an Ethereum simulator that makes developing Ethereum applications fas | terminationGracePeriodSeconds | int | `30` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | # Examples diff --git a/charts/ganache/values.yaml b/charts/ganache/values.yaml index b60706e5..3b86c1c9 100644 --- a/charts/ganache/values.yaml +++ b/charts/ganache/values.yaml @@ -151,9 +151,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/genesis-generator/Chart.yaml b/charts/genesis-generator/Chart.yaml index 14b7a892..9ed7a25b 100644 --- a/charts/genesis-generator/Chart.yaml +++ b/charts/genesis-generator/Chart.yaml @@ -6,7 +6,7 @@ sources: - https://github.com/skylenet/ethereum-genesis-generator - https://github.com/protolambda/eth2-testnet-genesis type: application -version: 0.2.2 +version: 0.2.3 maintainers: - name: skylenet email: rafael@skyle.net diff --git a/charts/genesis-generator/README.md b/charts/genesis-generator/README.md index 9d078e95..c89445eb 100644 --- a/charts/genesis-generator/README.md +++ b/charts/genesis-generator/README.md @@ -1,7 +1,7 @@ # genesis-generator -![Version: 0.2.2](https://img.shields.io/badge/Version-0.2.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.2.3](https://img.shields.io/badge/Version-0.2.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Generate testnet genesis files for the execution and consensus layer clients @@ -68,5 +68,5 @@ Generate testnet genesis files for the execution and consensus layer clients | terminationGracePeriodSeconds | int | `5` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | diff --git a/charts/genesis-generator/values.yaml b/charts/genesis-generator/values.yaml index a41177c6..c768cc02 100644 --- a/charts/genesis-generator/values.yaml +++ b/charts/genesis-generator/values.yaml @@ -224,9 +224,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/geth/Chart.yaml b/charts/geth/Chart.yaml index f5d0293c..428af5f2 100644 --- a/charts/geth/Chart.yaml +++ b/charts/geth/Chart.yaml @@ -9,7 +9,7 @@ icon: https://launchpad.ethereum.org/static/media/gethereum-mascot-circle.75cbd3 sources: - https://github.com/ethereum/go-ethereum type: application -version: 1.0.8 +version: 1.0.9 maintainers: - name: skylenet email: rafael@skyle.net diff --git a/charts/geth/README.md b/charts/geth/README.md index 9c58206b..27016585 100644 --- a/charts/geth/README.md +++ b/charts/geth/README.md @@ -1,7 +1,7 @@ # geth -![Version: 1.0.8](https://img.shields.io/badge/Version-1.0.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 1.0.9](https://img.shields.io/badge/Version-1.0.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) 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 @@ -96,8 +96,8 @@ Go Ethereum (Geth for short) is one of the original implementations of the Ether | terminationGracePeriodSeconds | int | `300` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | | wsPort | int | `8545` | WS Port | # Examples diff --git a/charts/geth/values.yaml b/charts/geth/values.yaml index 5d99dc8a..e3905045 100644 --- a/charts/geth/values.yaml +++ b/charts/geth/values.yaml @@ -214,7 +214,7 @@ rbac: # -- Required ClusterRole rules # @default -- See `values.yaml` rules: - # Required to get information about the serices nodePort. + # Required to get information about the services nodePort. - apiGroups: [""] resources: - "services" @@ -276,9 +276,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/grandine/Chart.yaml b/charts/grandine/Chart.yaml index 6746715a..9a55a650 100644 --- a/charts/grandine/Chart.yaml +++ b/charts/grandine/Chart.yaml @@ -6,7 +6,7 @@ icon: https://github.com/sifraitech/grandine/blob/master/gui.png sources: - https://github.com/sifraitech/grandine type: application -version: 0.1.2 +version: 0.1.3 maintainers: - name: barnabasbusa email: busa.barnabas@gmail.com diff --git a/charts/grandine/README.md b/charts/grandine/README.md index 6936c664..565bd824 100644 --- a/charts/grandine/README.md +++ b/charts/grandine/README.md @@ -1,7 +1,7 @@ # grandine -![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) +![Version: 0.1.3](https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) A currently closed source, but hopefully soon to be open-source Ethereum Consensus layer client, written in Rust. @@ -91,8 +91,8 @@ A currently closed source, but hopefully soon to be open-source Ethereum Consens | terminationGracePeriodSeconds | int | `300` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | # Examples diff --git a/charts/grandine/values.yaml b/charts/grandine/values.yaml index d490bb5a..8b623f6e 100644 --- a/charts/grandine/values.yaml +++ b/charts/grandine/values.yaml @@ -199,7 +199,7 @@ rbac: # -- Required ClusterRole rules # @default -- See `values.yaml` rules: - # Required to get information about the serices nodePort. + # Required to get information about the services nodePort. - apiGroups: [""] resources: - "services" @@ -261,9 +261,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/ipfs-cluster/Chart.yaml b/charts/ipfs-cluster/Chart.yaml index f0c1e9cc..9bf1131a 100644 --- a/charts/ipfs-cluster/Chart.yaml +++ b/charts/ipfs-cluster/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: ipfs-cluster description: Run ipfs cluster along with kubo (go-ipfs) type: application -version: 0.1.13 +version: 0.1.14 maintainers: - name: skylenet email: rafael@skyle.net diff --git a/charts/ipfs-cluster/README.md b/charts/ipfs-cluster/README.md index 460e9893..a5c9e51c 100644 --- a/charts/ipfs-cluster/README.md +++ b/charts/ipfs-cluster/README.md @@ -1,6 +1,6 @@ # ipfs-cluster -![Version: 0.1.13](https://img.shields.io/badge/Version-0.1.13-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.1.14](https://img.shields.io/badge/Version-0.1.14-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Run ipfs cluster along with kubo (go-ipfs) diff --git a/charts/ipfs-cluster/values.yaml b/charts/ipfs-cluster/values.yaml index 0a922825..38d3dfb5 100644 --- a/charts/ipfs-cluster/values.yaml +++ b/charts/ipfs-cluster/values.yaml @@ -134,7 +134,7 @@ securityContext: {} # runAsNonRoot: true # runAsUser: 1000 -# `service.type` may be overridden by `cluster.service.type` and/or `ipfs.sercive.type`. +# `service.type` may be overridden by `cluster.service.type` and/or `ipfs.service.type`. service: type: ClusterIP @@ -172,7 +172,7 @@ rbac: # -- Required ClusterRole rules # @default -- See `values.yaml` rules: - # Required to get information about the serices nodePort. + # Required to get information about the services nodePort. - apiGroups: [""] resources: - "services" diff --git a/charts/lighthouse/Chart.yaml b/charts/lighthouse/Chart.yaml index 93b91079..06a950e7 100644 --- a/charts/lighthouse/Chart.yaml +++ b/charts/lighthouse/Chart.yaml @@ -6,7 +6,7 @@ icon: https://launchpad.ethereum.org/static/media/lighthouse-circle.e0b82d14.png sources: - https://github.com/sigp/lighthouse type: application -version: 1.1.4 +version: 1.1.5 maintainers: - name: skylenet email: rafael@skyle.net diff --git a/charts/lighthouse/README.md b/charts/lighthouse/README.md index 6c6da6e0..55b278c5 100644 --- a/charts/lighthouse/README.md +++ b/charts/lighthouse/README.md @@ -1,7 +1,7 @@ # lighthouse -![Version: 1.1.4](https://img.shields.io/badge/Version-1.1.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 1.1.5](https://img.shields.io/badge/Version-1.1.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) An open-source Ethereum 2.0 client, written in Rust @@ -94,8 +94,8 @@ An open-source Ethereum 2.0 client, written in Rust | terminationGracePeriodSeconds | int | `300` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | | validatorLivenessProbe | object | See `values.yaml` | Validator Liveness probe | | validatorReadinessProbe | object | See `values.yaml` | Validator Readiness probe | diff --git a/charts/lighthouse/values.yaml b/charts/lighthouse/values.yaml index b7602955..5e653552 100644 --- a/charts/lighthouse/values.yaml +++ b/charts/lighthouse/values.yaml @@ -273,7 +273,7 @@ rbac: # -- Required ClusterRole rules # @default -- See `values.yaml` rules: - # Required to get information about the serices nodePort. + # Required to get information about the services nodePort. - apiGroups: [""] resources: - "services" @@ -335,9 +335,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/lodestar/Chart.yaml b/charts/lodestar/Chart.yaml index 32425298..e45a1995 100644 --- a/charts/lodestar/Chart.yaml +++ b/charts/lodestar/Chart.yaml @@ -6,7 +6,7 @@ icon: https://raw.githubusercontent.com/ChainSafe/lodestar/master/assets/lodesta sources: - https://github.com/ChainSafe/lodestar type: application -version: 1.1.3 +version: 1.1.4 maintainers: - name: skylenet email: rafael@skyle.net diff --git a/charts/lodestar/README.md b/charts/lodestar/README.md index 3e9da313..4ea7bd65 100644 --- a/charts/lodestar/README.md +++ b/charts/lodestar/README.md @@ -1,7 +1,7 @@ # lodestar -![Version: 1.1.3](https://img.shields.io/badge/Version-1.1.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 1.1.4](https://img.shields.io/badge/Version-1.1.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Lodestar is a open-source TypeScript implementation of the Ethereum consensus engine. @@ -93,8 +93,8 @@ Lodestar is a open-source TypeScript implementation of the Ethereum consensus en | terminationGracePeriodSeconds | int | `300` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | | validatorLivenessProbe | object | See `values.yaml` | Validator Liveness probe | | validatorReadinessProbe | object | See `values.yaml` | Validator Readiness probe | diff --git a/charts/lodestar/values.yaml b/charts/lodestar/values.yaml index ffe96781..3ada36a1 100644 --- a/charts/lodestar/values.yaml +++ b/charts/lodestar/values.yaml @@ -244,7 +244,7 @@ rbac: # -- Required ClusterRole rules # @default -- See `values.yaml` rules: - # Required to get information about the serices nodePort. + # Required to get information about the services nodePort. - apiGroups: [""] resources: - "services" @@ -306,9 +306,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/nethermind/Chart.yaml b/charts/nethermind/Chart.yaml index f33d5217..e8c63ce8 100644 --- a/charts/nethermind/Chart.yaml +++ b/charts/nethermind/Chart.yaml @@ -7,7 +7,7 @@ icon: https://launchpad.ethereum.org/static/media/nethermind-circle.fbbf1a32.png sources: - https://github.com/NethermindEth/nethermind type: application -version: 1.0.13 +version: 1.0.14 maintainers: - name: skylenet email: rafael@skyle.net diff --git a/charts/nethermind/README.md b/charts/nethermind/README.md index 72fa9824..f80d81bf 100644 --- a/charts/nethermind/README.md +++ b/charts/nethermind/README.md @@ -1,7 +1,7 @@ # nethermind -![Version: 1.0.13](https://img.shields.io/badge/Version-1.0.13-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 1.0.14](https://img.shields.io/badge/Version-1.0.14-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Nethermind is an Ethereum execution layer implementation created with the C# .NET tech stack, running on all major platforms including ARM. @@ -94,8 +94,8 @@ Nethermind is an Ethereum execution layer implementation created with the C# .NE | terminationGracePeriodSeconds | int | `300` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | | wsPort | int | `8545` | WS Port | # Examples diff --git a/charts/nethermind/values.yaml b/charts/nethermind/values.yaml index c266be4b..dd0002e1 100644 --- a/charts/nethermind/values.yaml +++ b/charts/nethermind/values.yaml @@ -210,7 +210,7 @@ rbac: # -- Required ClusterRole rules # @default -- See `values.yaml` rules: - # Required to get information about the serices nodePort. + # Required to get information about the services nodePort. - apiGroups: [""] resources: - "services" @@ -272,9 +272,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/nimbus/Chart.yaml b/charts/nimbus/Chart.yaml index 48858a74..ba7012c9 100644 --- a/charts/nimbus/Chart.yaml +++ b/charts/nimbus/Chart.yaml @@ -6,7 +6,7 @@ icon: https://launchpad.ethereum.org/static/media/nimbus-circle.2752d77b.png sources: - https://github.com/status-im/nimbus-eth2 type: application -version: 1.1.3 +version: 1.1.4 maintainers: - name: skylenet email: rafael@skyle.net diff --git a/charts/nimbus/README.md b/charts/nimbus/README.md index 416763fc..06e3db51 100644 --- a/charts/nimbus/README.md +++ b/charts/nimbus/README.md @@ -1,7 +1,7 @@ # nimbus -![Version: 1.1.3](https://img.shields.io/badge/Version-1.1.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 1.1.4](https://img.shields.io/badge/Version-1.1.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) An open-source Ethereum consensus layer client, written in Nim @@ -95,8 +95,8 @@ An open-source Ethereum consensus layer client, written in Nim | terminationGracePeriodSeconds | int | `300` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | # Examples diff --git a/charts/nimbus/values.yaml b/charts/nimbus/values.yaml index 03555dbf..5dbca00d 100644 --- a/charts/nimbus/values.yaml +++ b/charts/nimbus/values.yaml @@ -216,7 +216,7 @@ rbac: # -- Required ClusterRole rules # @default -- See `values.yaml` rules: - # Required to get information about the serices nodePort. + # Required to get information about the services nodePort. - apiGroups: [""] resources: - "services" @@ -278,9 +278,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/powfaucet/Chart.yaml b/charts/powfaucet/Chart.yaml index 784cf2e0..db50add6 100644 --- a/charts/powfaucet/Chart.yaml +++ b/charts/powfaucet/Chart.yaml @@ -6,7 +6,7 @@ home: https://github.com/pk910/PoWFaucet sources: - https://github.com/pk910/PoWFaucet type: application -version: 0.0.4 +version: 0.0.5 appVersion: "2.0.0" maintainers: - name: pk910 diff --git a/charts/powfaucet/README.md b/charts/powfaucet/README.md index d2741d6c..77954dce 100644 --- a/charts/powfaucet/README.md +++ b/charts/powfaucet/README.md @@ -1,7 +1,7 @@ # powfaucet -![Version: 0.0.4](https://img.shields.io/badge/Version-0.0.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.0.5](https://img.shields.io/badge/Version-0.0.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) PoW Faucet for EVM chains @@ -125,5 +125,5 @@ faucetPowRewardPerHash: 500000000000000000 # 0.5 ETH | terminationGracePeriodSeconds | int | `30` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | diff --git a/charts/powfaucet/values.yaml b/charts/powfaucet/values.yaml index 37fb8481..739350c7 100644 --- a/charts/powfaucet/values.yaml +++ b/charts/powfaucet/values.yaml @@ -115,9 +115,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers @@ -566,7 +566,7 @@ config: | powShareReward: {{ .Values.faucetPowRewardPerHash }} # penalty for not responding to a verification request (percent of powShareReward) - # shouldn't be too high as this can happen regularily in case of connection loss or so + # shouldn't be too high as this can happen regularly in case of connection loss or so verifyMinerMissPenaltyPerc: 10 # 10% of powShareReward # reward for responding to a verification request in time (percent of powShareReward) diff --git a/charts/prysm/Chart.yaml b/charts/prysm/Chart.yaml index 00e4e2da..5e687a2c 100644 --- a/charts/prysm/Chart.yaml +++ b/charts/prysm/Chart.yaml @@ -6,7 +6,7 @@ icon: https://launchpad.ethereum.org/static/media/prysmatic-labs-circle.96c803fe sources: - https://github.com/prysmaticlabs/prysm type: application -version: 1.1.4 +version: 1.1.5 maintainers: - name: skylenet email: rafael@skyle.net diff --git a/charts/prysm/README.md b/charts/prysm/README.md index 37aa6509..bb486ae9 100644 --- a/charts/prysm/README.md +++ b/charts/prysm/README.md @@ -1,7 +1,7 @@ # prysm -![Version: 1.1.4](https://img.shields.io/badge/Version-1.1.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 1.1.5](https://img.shields.io/badge/Version-1.1.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) An open-source Ethereum 2.0 client, written in Go @@ -94,8 +94,8 @@ An open-source Ethereum 2.0 client, written in Go | terminationGracePeriodSeconds | int | `300` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | | validatorLivenessProbe | object | See `values.yaml` | Validator Liveness probe | | validatorReadinessProbe | object | See `values.yaml` | Validator Readiness probe | diff --git a/charts/prysm/values.yaml b/charts/prysm/values.yaml index 3378a85e..f1beffc3 100644 --- a/charts/prysm/values.yaml +++ b/charts/prysm/values.yaml @@ -251,7 +251,7 @@ rbac: # -- Required ClusterRole rules # @default -- See `values.yaml` rules: - # Required to get information about the serices nodePort. + # Required to get information about the services nodePort. - apiGroups: [""] resources: - "services" @@ -313,9 +313,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/reth/Chart.yaml b/charts/reth/Chart.yaml index 2b4d06f7..bbc13c69 100644 --- a/charts/reth/Chart.yaml +++ b/charts/reth/Chart.yaml @@ -7,7 +7,7 @@ icon: https://github.com/paradigmxyz/reth/raw/main/assets/reth.jpg sources: - https://github.com/paradigmxyz/reth/ type: application -version: 0.0.14 +version: 0.0.15 maintainers: - name: barnabasbusa email: busa.barnabas@gmail.com diff --git a/charts/reth/README.md b/charts/reth/README.md index 6a37f411..8ab9a17a 100644 --- a/charts/reth/README.md +++ b/charts/reth/README.md @@ -1,7 +1,7 @@ # reth -![Version: 0.0.14](https://img.shields.io/badge/Version-0.0.14-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.0.15](https://img.shields.io/badge/Version-0.0.15-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Reth (short for Rust Ethereum, pronunciation) is a new Ethereum full node implementation that is focused on being user-friendly, highly modular, as well as being fast and efficient. Reth is an Execution Layer (EL) and is compatible with all Ethereum Consensus Layer (CL) implementations that support the Engine API. It is originally built and driven forward by Paradigm, and is licensed under the Apache and MIT licenses. @@ -95,8 +95,8 @@ Reth (short for Rust Ethereum, pronunciation) is a new Ethereum full node implem | terminationGracePeriodSeconds | int | `300` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | | wsPort | int | `8546` | WS Port | # Examples diff --git a/charts/reth/values.yaml b/charts/reth/values.yaml index 8738e7f8..df273abc 100644 --- a/charts/reth/values.yaml +++ b/charts/reth/values.yaml @@ -207,7 +207,7 @@ rbac: # -- Required ClusterRole rules # @default -- See `values.yaml` rules: - # Required to get information about the serices nodePort. + # Required to get information about the services nodePort. - apiGroups: [""] resources: - services @@ -269,9 +269,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/smart-contract-verifier-http/Chart.yaml b/charts/smart-contract-verifier-http/Chart.yaml index 3308740e..d917584a 100644 --- a/charts/smart-contract-verifier-http/Chart.yaml +++ b/charts/smart-contract-verifier-http/Chart.yaml @@ -6,7 +6,7 @@ home: https://github.com/blockscout/blockscout-rs/tree/main/smart-contract-verif sources: - https://github.com/blockscout/blockscout-rs/tree/main/smart-contract-verifier-http type: application -version: 0.1.3 +version: 0.1.4 maintainers: - name: skylenet email: rafael@skyle.net diff --git a/charts/smart-contract-verifier-http/README.md b/charts/smart-contract-verifier-http/README.md index 48b1a5ba..7e7151d6 100644 --- a/charts/smart-contract-verifier-http/README.md +++ b/charts/smart-contract-verifier-http/README.md @@ -1,7 +1,7 @@ # smart-contract-verifier-http -![Version: 0.1.3](https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.1.4](https://img.shields.io/badge/Version-0.1.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Smart-contract verification service. Runs as an HTTP server and allows making verification requests through REST API. @@ -74,8 +74,8 @@ Smart-contract verification service. Runs as an HTTP server and allows making ve | terminationGracePeriodSeconds | int | `30` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | # Examples diff --git a/charts/smart-contract-verifier-http/values.yaml b/charts/smart-contract-verifier-http/values.yaml index f1a514a2..a5b60b03 100644 --- a/charts/smart-contract-verifier-http/values.yaml +++ b/charts/smart-contract-verifier-http/values.yaml @@ -17,7 +17,7 @@ image: # -- Custom args for the smart-contract-verifier-http container customArgs: [] - #- -config-file=/somehwere-else.yaml + #- -config-file=/somewhere-else.yaml #- -output-dir=public # -- Command replacement for the smart-contract-verifier-http container @@ -215,9 +215,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/teku/Chart.yaml b/charts/teku/Chart.yaml index 2d3f23ef..9a669739 100644 --- a/charts/teku/Chart.yaml +++ b/charts/teku/Chart.yaml @@ -6,7 +6,7 @@ icon: https://launchpad.ethereum.org/static/media/pegasys-teku-circle.4147bb69.p sources: - https://github.com/Consensys/teku/ type: application -version: 1.1.3 +version: 1.1.4 maintainers: - name: skylenet email: rafael@skyle.net diff --git a/charts/teku/README.md b/charts/teku/README.md index 48619727..2797d75d 100644 --- a/charts/teku/README.md +++ b/charts/teku/README.md @@ -1,7 +1,7 @@ # teku -![Version: 1.1.3](https://img.shields.io/badge/Version-1.1.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 1.1.4](https://img.shields.io/badge/Version-1.1.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) An open-source Ethereum 2.0 client, written in Java @@ -93,8 +93,8 @@ An open-source Ethereum 2.0 client, written in Java | terminationGracePeriodSeconds | int | `300` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | # Examples diff --git a/charts/teku/values.yaml b/charts/teku/values.yaml index 556f3d6f..ddd16f77 100644 --- a/charts/teku/values.yaml +++ b/charts/teku/values.yaml @@ -224,7 +224,7 @@ rbac: # -- Required ClusterRole rules # @default -- See `values.yaml` rules: - # Required to get information about the serices nodePort. + # Required to get information about the services nodePort. - apiGroups: [""] resources: - "services" @@ -286,9 +286,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/web3signer/Chart.yaml b/charts/web3signer/Chart.yaml index 8f2fb828..a1488e73 100644 --- a/charts/web3signer/Chart.yaml +++ b/charts/web3signer/Chart.yaml @@ -3,7 +3,7 @@ name: web3signer description: Web3Signer is capable of signing on multiple platforms using private keys stored in an external vault, or encrypted on a disk. home: https://github.com/Consensys/web3signer/ type: application -version: 1.0.5 +version: 1.0.6 maintainers: - name: barnabasbusa email: busa.barnabas@gmail.com diff --git a/charts/web3signer/README.md b/charts/web3signer/README.md index 97c2787a..1553aa61 100644 --- a/charts/web3signer/README.md +++ b/charts/web3signer/README.md @@ -1,7 +1,7 @@ # web3signer -![Version: 1.0.5](https://img.shields.io/badge/Version-1.0.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 1.0.6](https://img.shields.io/badge/Version-1.0.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Web3Signer is capable of signing on multiple platforms using private keys stored in an external vault, or encrypted on a disk. @@ -107,8 +107,8 @@ Web3Signer is capable of signing on multiple platforms using private keys stored | terminationGracePeriodSeconds | int | `300` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | # Examples diff --git a/charts/web3signer/values.yaml b/charts/web3signer/values.yaml index f4462414..82436ace 100644 --- a/charts/web3signer/values.yaml +++ b/charts/web3signer/values.yaml @@ -163,9 +163,9 @@ podDisruptionBudget: {} # minAvailable: 1 # maxUnavailable: 1 -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Additional init containers diff --git a/charts/xatu-cannon/Chart.yaml b/charts/xatu-cannon/Chart.yaml index 40364195..e3036f27 100644 --- a/charts/xatu-cannon/Chart.yaml +++ b/charts/xatu-cannon/Chart.yaml @@ -3,7 +3,7 @@ name: xatu-cannon description: Ethereum p2p monitoring tool that runs along side a Ethereum consensus client and collects data via the consensus client's Beacon API. home: https://github.com/ethpandaops/xatu type: application -version: 0.2.1 +version: 0.2.2 maintainers: - name: samcm email: sam.calder-mason@ethereum.org diff --git a/charts/xatu-cannon/README.md b/charts/xatu-cannon/README.md index 32f2d4be..938b40c0 100644 --- a/charts/xatu-cannon/README.md +++ b/charts/xatu-cannon/README.md @@ -1,7 +1,7 @@ # xatu-cannon -![Version: 0.2.1](https://img.shields.io/badge/Version-0.2.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.2.2](https://img.shields.io/badge/Version-0.2.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Ethereum p2p monitoring tool that runs along side a Ethereum consensus client and collects data via the consensus client's Beacon API. @@ -75,5 +75,5 @@ Ethereum p2p monitoring tool that runs along side a Ethereum consensus client an | terminationGracePeriodSeconds | int | `90` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | diff --git a/charts/xatu-cannon/values.yaml b/charts/xatu-cannon/values.yaml index fceaa2dc..20592dd4 100644 --- a/charts/xatu-cannon/values.yaml +++ b/charts/xatu-cannon/values.yaml @@ -95,9 +95,9 @@ podManagementPolicy: OrderedReady # -- Pod priority class priorityClassName: null -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Resource requests and limits diff --git a/charts/xatu-cl-mimicry/Chart.yaml b/charts/xatu-cl-mimicry/Chart.yaml index 12d7f8c8..78ea5bb3 100644 --- a/charts/xatu-cl-mimicry/Chart.yaml +++ b/charts/xatu-cl-mimicry/Chart.yaml @@ -3,7 +3,7 @@ name: xatu-cl-mimicry description: Ethereum p2p monitoring tool that collects data from the consensus layer. home: https://github.com/ethpandaops/xatu type: application -version: 0.0.1 +version: 0.0.2 maintainers: - name: samcm email: sam.calder-mason@ethereum.org diff --git a/charts/xatu-cl-mimicry/README.md b/charts/xatu-cl-mimicry/README.md index 20398faa..de0a6e45 100644 --- a/charts/xatu-cl-mimicry/README.md +++ b/charts/xatu-cl-mimicry/README.md @@ -1,7 +1,7 @@ # xatu-cl-mimicry -![Version: 0.0.1](https://img.shields.io/badge/Version-0.0.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.0.2](https://img.shields.io/badge/Version-0.0.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Ethereum p2p monitoring tool that collects data from the consensus layer. @@ -84,5 +84,5 @@ Ethereum p2p monitoring tool that collects data from the consensus layer. | terminationGracePeriodSeconds | int | `90` | How long to wait until the pod is forcefully terminated | | tolerations | list | `[]` | Tolerations for pods | | topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pods | -| updateStrategy | object | `{"type":"RollingUpdate"}` | Update stategy for the Statefulset | -| updateStrategy.type | string | `"RollingUpdate"` | Update stategy type | +| updateStrategy | object | `{"type":"RollingUpdate"}` | Update strategy for the Statefulset | +| updateStrategy.type | string | `"RollingUpdate"` | Update strategy type | diff --git a/charts/xatu-cl-mimicry/values.yaml b/charts/xatu-cl-mimicry/values.yaml index c5ba7e32..ca5bcaf4 100644 --- a/charts/xatu-cl-mimicry/values.yaml +++ b/charts/xatu-cl-mimicry/values.yaml @@ -107,9 +107,9 @@ priorityClassName: null # -- Pod management policy podManagementPolicy: OrderedReady -# -- Update stategy for the Statefulset +# -- Update strategy for the Statefulset updateStrategy: - # -- Update stategy type + # -- Update strategy type type: RollingUpdate # -- Resource requests and limits