From f277fbc426f48c2104cf322227c9b19e9451cf60 Mon Sep 17 00:00:00 2001 From: Carlos Jorge Date: Mon, 28 Oct 2024 09:54:49 +0000 Subject: [PATCH 1/5] feat: change default accessMode to ReadWriteOncePod --- charts/arbitrum-classic/README.md | 2 +- charts/arbitrum-classic/values.yaml | 2 +- charts/arbitrum-nitro/README.md | 2 +- charts/arbitrum-nitro/values.yaml | 2 +- charts/celo/README.md | 2 +- charts/celo/values.yaml | 2 +- charts/erigon/README.md | 2 +- charts/erigon/values.yaml | 2 +- charts/heimdall/README.md | 2 +- charts/heimdall/values.yaml | 2 +- charts/lib/README.md | 8 ++++++++ charts/lighthouse/README.md | 2 +- charts/lighthouse/values.yaml | 2 +- charts/nimbus/README.md | 2 +- charts/nimbus/values.yaml | 2 +- charts/subgraph-radio/README.md | 2 +- charts/subgraph-radio/values.yaml | 2 +- charts/test-chart/README.md | 25 +++++++++++++++++++++++++ 18 files changed, 49 insertions(+), 16 deletions(-) create mode 100644 charts/lib/README.md create mode 100644 charts/test-chart/README.md diff --git a/charts/arbitrum-classic/README.md b/charts/arbitrum-classic/README.md index 3997fdec..0a8d394e 100644 --- a/charts/arbitrum-classic/README.md +++ b/charts/arbitrum-classic/README.md @@ -150,7 +150,7 @@ We do not recommend that you upgrade the application by overriding `image.tag`. | arbitrum.service.type | | string | `"ClusterIP"` | | arbitrum.terminationGracePeriodSeconds | Amount of time to wait before force-killing the arbitrum process | int | `60` | | arbitrum.tolerations | | list | `[]` | - | arbitrum.volumeClaimSpec | [PersistentVolumeClaimSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#persistentvolumeclaimspec-v1-core) for arbitrum storage | object | `{"accessModes":["ReadWriteOnce"],"resources":{"requests":{"storage":"750G"}},"storageClassName":null}` | + | arbitrum.volumeClaimSpec | [PersistentVolumeClaimSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#persistentvolumeclaimspec-v1-core) for arbitrum storage | object | `{"accessModes":["ReadWriteOncePod"],"resources":{"requests":{"storage":"750G"}},"storageClassName":null}` | | arbitrum.volumeClaimSpec.resources.requests.storage | The amount of disk space to provision for arbitrum | string | `"750G"` | | arbitrum.volumeClaimSpec.storageClassName | The storage class to use when provisioning a persistent volume for arbitrum | string | `nil` | | fullnameOverride | | string | `""` | diff --git a/charts/arbitrum-classic/values.yaml b/charts/arbitrum-classic/values.yaml index 9114a712..ef855ead 100644 --- a/charts/arbitrum-classic/values.yaml +++ b/charts/arbitrum-classic/values.yaml @@ -103,7 +103,7 @@ arbitrum: # -- [PersistentVolumeClaimSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#persistentvolumeclaimspec-v1-core) for arbitrum storage volumeClaimSpec: - accessModes: ["ReadWriteOnce"] + accessModes: ["ReadWriteOncePod"] # -- The storage class to use when provisioning a persistent volume for arbitrum storageClassName: resources: diff --git a/charts/arbitrum-nitro/README.md b/charts/arbitrum-nitro/README.md index cad4b24e..b37173ad 100644 --- a/charts/arbitrum-nitro/README.md +++ b/charts/arbitrum-nitro/README.md @@ -127,7 +127,7 @@ We do not recommend that you upgrade the application by overriding `image.tag`. | nitro.service.type | | string | `"ClusterIP"` | | nitro.terminationGracePeriodSeconds | Amount of time to wait before force-killing the arbitrum process | int | `60` | | nitro.tolerations | | list | `[]` | - | nitro.volumeClaimSpec | [PersistentVolumeClaimSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#persistentvolumeclaimspec-v1-core) for arbitrum storage | object | `{"accessModes":["ReadWriteOnce"],"resources":{"requests":{"storage":"8Ti"}},"storageClassName":null}` | + | nitro.volumeClaimSpec | [PersistentVolumeClaimSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#persistentvolumeclaimspec-v1-core) for arbitrum storage | object | `{"accessModes":["ReadWriteOncePod"],"resources":{"requests":{"storage":"8Ti"}},"storageClassName":null}` | | nitro.volumeClaimSpec.resources.requests.storage | The amount of disk space to provision for arbitrum | string | `"8Ti"` | | nitro.volumeClaimSpec.storageClassName | The storage class to use when provisioning a persistent volume for arbitrum | string | `nil` | | prometheus.serviceMonitors.enabled | Enable monitoring by creating `ServiceMonitor` CRDs ([prometheus-operator](https://github.com/prometheus-operator/prometheus-operator)) | bool | `false` | diff --git a/charts/arbitrum-nitro/values.yaml b/charts/arbitrum-nitro/values.yaml index 0c6b620d..82ca4d17 100644 --- a/charts/arbitrum-nitro/values.yaml +++ b/charts/arbitrum-nitro/values.yaml @@ -108,7 +108,7 @@ nitro: # -- [PersistentVolumeClaimSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#persistentvolumeclaimspec-v1-core) for arbitrum storage volumeClaimSpec: - accessModes: ["ReadWriteOnce"] + accessModes: ["ReadWriteOncePod"] # -- The storage class to use when provisioning a persistent volume for arbitrum storageClassName: resources: diff --git a/charts/celo/README.md b/charts/celo/README.md index 0b714181..996b106c 100644 --- a/charts/celo/README.md +++ b/charts/celo/README.md @@ -82,7 +82,7 @@ We do not recommend that you upgrade the application by overriding `image.tag`. | celo.service.type | | string | `"ClusterIP"` | | celo.terminationGracePeriodSeconds | Amount of time to wait before force-killing the container | int | `60` | | celo.tolerations | | list | `[]` | - | celo.volumeClaimSpec | [PersistentVolumeClaimSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#persistentvolumeclaimspec-v1-core) for storage | object | `{"accessModes":["ReadWriteOnce"],"resources":{"requests":{"storage":"1.5Ti"}},"storageClassName":null}` | + | celo.volumeClaimSpec | [PersistentVolumeClaimSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#persistentvolumeclaimspec-v1-core) for storage | object | `{"accessModes":["ReadWriteOncePod"],"resources":{"requests":{"storage":"1.5Ti"}},"storageClassName":null}` | | celo.volumeClaimSpec.resources.requests.storage | The amount of disk space to provision | string | `"1.5Ti"` | | celo.volumeClaimSpec.storageClassName | The storage class to use when provisioning a persistent volume | string | `nil` | | fullnameOverride | | string | `""` | diff --git a/charts/celo/values.yaml b/charts/celo/values.yaml index 69e286b8..fde7ccd8 100644 --- a/charts/celo/values.yaml +++ b/charts/celo/values.yaml @@ -77,7 +77,7 @@ celo: # -- [PersistentVolumeClaimSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#persistentvolumeclaimspec-v1-core) for storage volumeClaimSpec: - accessModes: ["ReadWriteOnce"] + accessModes: ["ReadWriteOncePod"] # -- The storage class to use when provisioning a persistent volume storageClassName: resources: diff --git a/charts/erigon/README.md b/charts/erigon/README.md index b2d876b2..a097096b 100644 --- a/charts/erigon/README.md +++ b/charts/erigon/README.md @@ -187,7 +187,7 @@ We do not recommend that you upgrade the application by overriding `image.tag`. | statefulNode.service.type | | string | `"ClusterIP"` | | statefulNode.terminationGracePeriodSeconds | Amount of time to wait before force-killing the Erigon process | int | `60` | | statefulNode.tolerations | | list | `[]` | - | statefulNode.volumeClaimSpec | [PersistentVolumeClaimSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#persistentvolumeclaimspec-v1-core) for Erigon storage | object | `{"accessModes":["ReadWriteOnce"],"resources":{"requests":{"storage":"3Ti"}},"storageClassName":null}` | + | statefulNode.volumeClaimSpec | [PersistentVolumeClaimSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#persistentvolumeclaimspec-v1-core) for Erigon storage | object | `{"accessModes":["ReadWriteOncePod"],"resources":{"requests":{"storage":"3Ti"}},"storageClassName":null}` | | statefulNode.volumeClaimSpec.resources.requests.storage | The amount of disk space to provision for Erigon | string | `"3Ti"` | | statefulNode.volumeClaimSpec.storageClassName | The storage class to use when provisioning a persistent volume for Erigon | string | `nil` | diff --git a/charts/erigon/values.yaml b/charts/erigon/values.yaml index 0c7c55e4..d69889f8 100644 --- a/charts/erigon/values.yaml +++ b/charts/erigon/values.yaml @@ -87,7 +87,7 @@ statefulNode: # -- [PersistentVolumeClaimSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#persistentvolumeclaimspec-v1-core) for Erigon storage volumeClaimSpec: - accessModes: ["ReadWriteOnce"] + accessModes: ["ReadWriteOncePod"] # -- The storage class to use when provisioning a persistent volume for Erigon storageClassName: resources: diff --git a/charts/heimdall/README.md b/charts/heimdall/README.md index 2a324172..af883542 100644 --- a/charts/heimdall/README.md +++ b/charts/heimdall/README.md @@ -83,7 +83,7 @@ We do not recommend that you upgrade the application by overriding `image.tag`. | heimdall.service.topologyAwareRouting.enabled | | bool | `false` | | heimdall.service.type | | string | `"ClusterIP"` | | heimdall.tolerations | | list | `[]` | - | heimdall.volumeClaimSpec | [PersistentVolumeClaimSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#persistentvolumeclaimspec-v1-core) for heimdall storage | object | `{"accessModes":["ReadWriteOnce"],"resources":{"requests":{"storage":"300Gi"}},"storageClassName":null}` | + | heimdall.volumeClaimSpec | [PersistentVolumeClaimSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#persistentvolumeclaimspec-v1-core) for heimdall storage | object | `{"accessModes":["ReadWriteOncePod"],"resources":{"requests":{"storage":"300Gi"}},"storageClassName":null}` | | heimdall.volumeClaimSpec.resources.requests.storage | The amount of disk space to provision for Heimdall | string | `"300Gi"` | | heimdall.volumeClaimSpec.storageClassName | The storage class to use when provisioning a persistent volume for heimdall | string | `nil` | | nameOverride | | string | `""` | diff --git a/charts/heimdall/values.yaml b/charts/heimdall/values.yaml index 0ec64358..d8a1ba8d 100644 --- a/charts/heimdall/values.yaml +++ b/charts/heimdall/values.yaml @@ -86,7 +86,7 @@ heimdall: # -- [PersistentVolumeClaimSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#persistentvolumeclaimspec-v1-core) for heimdall storage volumeClaimSpec: - accessModes: ["ReadWriteOnce"] + accessModes: ["ReadWriteOncePod"] # -- The storage class to use when provisioning a persistent volume for heimdall storageClassName: resources: diff --git a/charts/lib/README.md b/charts/lib/README.md new file mode 100644 index 00000000..c4af7037 --- /dev/null +++ b/charts/lib/README.md @@ -0,0 +1,8 @@ +# lib + +![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: library](https://img.shields.io/badge/Type-library-informational?style=flat-square) ![AppVersion: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square) + +A Helm chart for Kubernetes + +---------------------------------------------- +Autogenerated from chart metadata using [helm-docs v1.11.3](https://github.com/norwoodj/helm-docs/releases/v1.11.3) diff --git a/charts/lighthouse/README.md b/charts/lighthouse/README.md index f7f9c76e..023b7e43 100644 --- a/charts/lighthouse/README.md +++ b/charts/lighthouse/README.md @@ -114,7 +114,7 @@ We do not recommend that you upgrade the application by overriding `image.tag`. | lighthouse.service.type | | string | `"ClusterIP"` | | 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":"300Gi"}},"storageClassName":null}` | + | lighthouse.volumeClaimSpec | [PersistentVolumeClaimSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#persistentvolumeclaimspec-v1-core) for storage | object | `{"accessModes":["ReadWriteOncePod"],"resources":{"requests":{"storage":"300Gi"}},"storageClassName":null}` | | lighthouse.volumeClaimSpec.resources.requests.storage | The amount of disk space to provision | string | `"300Gi"` | | lighthouse.volumeClaimSpec.storageClassName | The storage class to use when provisioning a persistent volume | string | `nil` | | nameOverride | | string | `""` | diff --git a/charts/lighthouse/values.yaml b/charts/lighthouse/values.yaml index 748196ab..686fdcd4 100644 --- a/charts/lighthouse/values.yaml +++ b/charts/lighthouse/values.yaml @@ -89,7 +89,7 @@ lighthouse: # -- [PersistentVolumeClaimSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#persistentvolumeclaimspec-v1-core) for storage volumeClaimSpec: - accessModes: ["ReadWriteOnce"] + accessModes: ["ReadWriteOncePod"] # -- The storage class to use when provisioning a persistent volume storageClassName: resources: diff --git a/charts/nimbus/README.md b/charts/nimbus/README.md index 8ebbae09..180c6dec 100644 --- a/charts/nimbus/README.md +++ b/charts/nimbus/README.md @@ -137,7 +137,7 @@ We do not recommend that you upgrade the application by overriding `image.tag`. | nimbus.trustedNodeSync.enabled | Enable init container to do a trusted checkpoint sync from another Consensus Client (be careful) | bool | `false` | | nimbus.trustedNodeSync.extraArgs | Additional CLI arguments | list | `[]` | | nimbus.trustedNodeSync.trustedNodeUrl | URL to the Trusted Consensus Client Node URL. See https://eth-clients.github.io/checkpoint-sync-endpoints/ | string | `""` | - | nimbus.volumeClaimSpec | [PersistentVolumeClaimSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#persistentvolumeclaimspec-v1-core) for storage | object | `{"accessModes":["ReadWriteOnce"],"resources":{"requests":{"storage":"300Gi"}},"storageClassName":null}` | + | nimbus.volumeClaimSpec | [PersistentVolumeClaimSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#persistentvolumeclaimspec-v1-core) for storage | object | `{"accessModes":["ReadWriteOncePod"],"resources":{"requests":{"storage":"300Gi"}},"storageClassName":null}` | | nimbus.volumeClaimSpec.resources.requests.storage | The amount of disk space to provision | string | `"300Gi"` | | nimbus.volumeClaimSpec.storageClassName | The storage class to use when provisioning a persistent volume | string | `nil` | | prometheus.serviceMonitors.enabled | Enable monitoring by creating `ServiceMonitor` CRDs ([prometheus-operator](https://github.com/prometheus-operator/prometheus-operator)) | bool | `false` | diff --git a/charts/nimbus/values.yaml b/charts/nimbus/values.yaml index b25234e8..7f781914 100644 --- a/charts/nimbus/values.yaml +++ b/charts/nimbus/values.yaml @@ -89,7 +89,7 @@ nimbus: # -- [PersistentVolumeClaimSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#persistentvolumeclaimspec-v1-core) for storage volumeClaimSpec: - accessModes: ["ReadWriteOnce"] + accessModes: ["ReadWriteOncePod"] # -- The storage class to use when provisioning a persistent volume storageClassName: resources: diff --git a/charts/subgraph-radio/README.md b/charts/subgraph-radio/README.md index 4eb6ff9c..a0aef7d5 100644 --- a/charts/subgraph-radio/README.md +++ b/charts/subgraph-radio/README.md @@ -92,7 +92,7 @@ We do not recommend that you upgrade the application by overriding `image.tag`. | serviceAccount.name | The name of the service account to use. If not set and create is true, a name is generated using the fullname template | string | `""` | | terminationGracePeriodSeconds | Amount of time to wait before force-killing the process | int | `10` | | tolerations | | list | `[]` | - | volumeClaimSpec.accessModes[0] | | string | `"ReadWriteOnce"` | + | volumeClaimSpec.accessModes[0] | | string | `"ReadWriteOncePod"` | | volumeClaimSpec.resources.requests.storage | The amount of disk space to provision | string | `"50Gi"` | | volumeClaimSpec.storageClassName | The storage class to use when provisioning a persistent volume | string | `""` | diff --git a/charts/subgraph-radio/values.yaml b/charts/subgraph-radio/values.yaml index 55937d58..d663b2af 100644 --- a/charts/subgraph-radio/values.yaml +++ b/charts/subgraph-radio/values.yaml @@ -8,7 +8,7 @@ fullnameOverride: "" imagePullSecrets: [] volumeClaimSpec: - accessModes: ["ReadWriteOnce"] + accessModes: ["ReadWriteOncePod"] # -- The storage class to use when provisioning a persistent volume storageClassName: "" resources: diff --git a/charts/test-chart/README.md b/charts/test-chart/README.md new file mode 100644 index 00000000..ecf810dc --- /dev/null +++ b/charts/test-chart/README.md @@ -0,0 +1,25 @@ +# test-chart + +![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square) + +A Helm chart for Kubernetes + +## Requirements + +| Repository | Name | Version | +|------------|------|---------| +| file://../lib | lib | 0.1.0 | + +## Values + +| Key | Description | Type | Default | +|-----|-------------|------|---------| + | erigonDefaults.replicaCount | | int | `0` | + | rpcdaemon.enabled | Enable a Deployment of rpcdaemon that can be scaled independently | bool | `true` | + | rpcdaemon.replicaCount | Number of replicas to run | int | `2` | + | statefulNode.enabled | | bool | `true` | + | statefulNode.replicaCount | | int | `1` | + | statefulNode.test | | string | `"{{ .ComponentValues.statefulNode.replicaCount }}"` | + +---------------------------------------------- +Autogenerated from chart metadata using [helm-docs v1.11.3](https://github.com/norwoodj/helm-docs/releases/v1.11.3) From 0d715bb9a8b89e50bcb7175a450720d8f3f89444 Mon Sep 17 00:00:00 2001 From: Carlos Jorge Date: Mon, 28 Oct 2024 15:28:30 +0000 Subject: [PATCH 2/5] feat: release canaries --- charts/arbitrum-classic/Chart.yaml | 2 +- charts/arbitrum-classic/README.md | 2 +- charts/arbitrum-nitro/Chart.yaml | 2 +- charts/arbitrum-nitro/README.md | 2 +- charts/celo/Chart.yaml | 2 +- charts/celo/README.md | 2 +- charts/erigon/Chart.yaml | 2 +- charts/erigon/README.md | 2 +- charts/heimdall/Chart.yaml | 2 +- charts/heimdall/README.md | 2 +- charts/lighthouse/Chart.yaml | 2 +- charts/lighthouse/README.md | 2 +- charts/nimbus/Chart.yaml | 2 +- charts/nimbus/README.md | 2 +- charts/subgraph-radio/Chart.yaml | 2 +- charts/subgraph-radio/README.md | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) diff --git a/charts/arbitrum-classic/Chart.yaml b/charts/arbitrum-classic/Chart.yaml index 22460721..2ab1477b 100644 --- a/charts/arbitrum-classic/Chart.yaml +++ b/charts/arbitrum-classic/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.2.1 +version: 0.3.0-canary.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/arbitrum-classic/README.md b/charts/arbitrum-classic/README.md index 0a8d394e..77700964 100644 --- a/charts/arbitrum-classic/README.md +++ b/charts/arbitrum-classic/README.md @@ -2,7 +2,7 @@ Deploy and scale [Arbitrum-Classic](https://github.com/OffchainLabs/arbitrum) 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.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) ![AppVersion: v1.4.5-e97c1a4](https://img.shields.io/badge/AppVersion-v1.4.5--e97c1a4-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.3.0-canary.1](https://img.shields.io/badge/Version-0.3.0--canary.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.4.5-e97c1a4](https://img.shields.io/badge/AppVersion-v1.4.5--e97c1a4-informational?style=flat-square) ## Features diff --git a/charts/arbitrum-nitro/Chart.yaml b/charts/arbitrum-nitro/Chart.yaml index ae1347f1..f9f8adca 100644 --- a/charts/arbitrum-nitro/Chart.yaml +++ b/charts/arbitrum-nitro/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.5.1 +version: 0.6.0-canary.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/arbitrum-nitro/README.md b/charts/arbitrum-nitro/README.md index b37173ad..e6164ca0 100644 --- a/charts/arbitrum-nitro/README.md +++ b/charts/arbitrum-nitro/README.md @@ -2,7 +2,7 @@ Deploy and scale [Arbitrum-Nitro](https://github.com/OffchainLabs/nitro/) 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.5.1](https://img.shields.io/badge/Version-0.5.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v3.2.1-d81324d](https://img.shields.io/badge/AppVersion-v3.2.1--d81324d-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.6.0-canary.1](https://img.shields.io/badge/Version-0.6.0--canary.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v3.2.1-d81324d](https://img.shields.io/badge/AppVersion-v3.2.1--d81324d-informational?style=flat-square) ## Features diff --git a/charts/celo/Chart.yaml b/charts/celo/Chart.yaml index 853d774d..b63efa45 100644 --- a/charts/celo/Chart.yaml +++ b/charts/celo/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.7 +version: 0.2.0-canary.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/celo/README.md b/charts/celo/README.md index 996b106c..9a444443 100644 --- a/charts/celo/README.md +++ b/charts/celo/README.md @@ -2,7 +2,7 @@ Deploy and scale [Celo](https://github.com/celo-org/celo-blockchain) Nodes 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.1.7](https://img.shields.io/badge/Version-0.1.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.8.5](https://img.shields.io/badge/AppVersion-1.8.5-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.2.0-canary.1](https://img.shields.io/badge/Version-0.2.0--canary.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.8.5](https://img.shields.io/badge/AppVersion-1.8.5-informational?style=flat-square) ## Features diff --git a/charts/erigon/Chart.yaml b/charts/erigon/Chart.yaml index e27e6700..264b8ceb 100644 --- a/charts/erigon/Chart.yaml +++ b/charts/erigon/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.10.7 +version: 0.11.0-canary.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/erigon/README.md b/charts/erigon/README.md index a097096b..44ad2572 100644 --- a/charts/erigon/README.md +++ b/charts/erigon/README.md @@ -2,7 +2,7 @@ Deploy and scale [Erigon](https://github.com/ledgerwatch/erigon) 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.10.7](https://img.shields.io/badge/Version-0.10.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.60.8](https://img.shields.io/badge/AppVersion-2.60.8-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.11.0-canary.1](https://img.shields.io/badge/Version-0.11.0--canary.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.60.8](https://img.shields.io/badge/AppVersion-2.60.8-informational?style=flat-square) ## Features diff --git a/charts/heimdall/Chart.yaml b/charts/heimdall/Chart.yaml index a949d7d3..0ed7d5fa 100644 --- a/charts/heimdall/Chart.yaml +++ b/charts/heimdall/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.2.4 +version: 1.3.0-canary.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/heimdall/README.md b/charts/heimdall/README.md index af883542..33279c52 100644 --- a/charts/heimdall/README.md +++ b/charts/heimdall/README.md @@ -2,7 +2,7 @@ Deploy and scale [Heimdall](https://github.com/maticnetwork/heimdall) inside Kubernetes with ease -[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![Version: 1.2.4](https://img.shields.io/badge/Version-1.2.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.10](https://img.shields.io/badge/AppVersion-1.0.10-informational?style=flat-square) +[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![Version: 1.3.0-canary.1](https://img.shields.io/badge/Version-1.3.0--canary.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.10](https://img.shields.io/badge/AppVersion-1.0.10-informational?style=flat-square) ## Features diff --git a/charts/lighthouse/Chart.yaml b/charts/lighthouse/Chart.yaml index 1361e5d8..54b553d9 100644 --- a/charts/lighthouse/Chart.yaml +++ b/charts/lighthouse/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.5.10 +version: 0.6.0-canary.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/lighthouse/README.md b/charts/lighthouse/README.md index 023b7e43..4be0bb85 100644 --- a/charts/lighthouse/README.md +++ b/charts/lighthouse/README.md @@ -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.5.10](https://img.shields.io/badge/Version-0.5.10-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v5.3.0](https://img.shields.io/badge/AppVersion-v5.3.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.6.0-canary.1](https://img.shields.io/badge/Version-0.6.0--canary.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v5.3.0](https://img.shields.io/badge/AppVersion-v5.3.0-informational?style=flat-square) ## Chart Features diff --git a/charts/nimbus/Chart.yaml b/charts/nimbus/Chart.yaml index e9d3f1fc..e65927cc 100644 --- a/charts/nimbus/Chart.yaml +++ b/charts/nimbus/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.5.18 +version: 0.6.0-canary.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/nimbus/README.md b/charts/nimbus/README.md index 180c6dec..6207172d 100644 --- a/charts/nimbus/README.md +++ b/charts/nimbus/README.md @@ -2,7 +2,7 @@ Deploy and scale [Nimbus](https://github.com/status-im/nimbus-eth2) 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.5.18](https://img.shields.io/badge/Version-0.5.18-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: multiarch-v24.9.0](https://img.shields.io/badge/AppVersion-multiarch--v24.9.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.6.0-canary.1](https://img.shields.io/badge/Version-0.6.0--canary.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: multiarch-v24.9.0](https://img.shields.io/badge/AppVersion-multiarch--v24.9.0-informational?style=flat-square) ## Chart Features diff --git a/charts/subgraph-radio/Chart.yaml b/charts/subgraph-radio/Chart.yaml index f039070c..d0441d5f 100644 --- a/charts/subgraph-radio/Chart.yaml +++ b/charts/subgraph-radio/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.2.14 +version: 0.3.0-canary.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/subgraph-radio/README.md b/charts/subgraph-radio/README.md index a0aef7d5..53fe53f8 100644 --- a/charts/subgraph-radio/README.md +++ b/charts/subgraph-radio/README.md @@ -2,7 +2,7 @@ Deploy a Graphcast Subgraph Radio into your Kubernetes stack -[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![Version: 0.2.14](https://img.shields.io/badge/Version-0.2.14-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.6](https://img.shields.io/badge/AppVersion-1.0.6-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.3.0-canary.1](https://img.shields.io/badge/Version-0.3.0--canary.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.6](https://img.shields.io/badge/AppVersion-1.0.6-informational?style=flat-square) ## Introduction From 3e67e2df4e9f5c7ecf6f5a25841f0b246bf38718 Mon Sep 17 00:00:00 2001 From: Carlos Jorge Date: Mon, 28 Oct 2024 15:30:14 +0000 Subject: [PATCH 3/5] fix: remove wrongly commited files --- charts/lib/README.md | 8 -------- charts/test-chart/README.md | 25 ------------------------- 2 files changed, 33 deletions(-) delete mode 100644 charts/lib/README.md delete mode 100644 charts/test-chart/README.md diff --git a/charts/lib/README.md b/charts/lib/README.md deleted file mode 100644 index c4af7037..00000000 --- a/charts/lib/README.md +++ /dev/null @@ -1,8 +0,0 @@ -# lib - -![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: library](https://img.shields.io/badge/Type-library-informational?style=flat-square) ![AppVersion: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square) - -A Helm chart for Kubernetes - ----------------------------------------------- -Autogenerated from chart metadata using [helm-docs v1.11.3](https://github.com/norwoodj/helm-docs/releases/v1.11.3) diff --git a/charts/test-chart/README.md b/charts/test-chart/README.md deleted file mode 100644 index ecf810dc..00000000 --- a/charts/test-chart/README.md +++ /dev/null @@ -1,25 +0,0 @@ -# test-chart - -![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square) - -A Helm chart for Kubernetes - -## Requirements - -| Repository | Name | Version | -|------------|------|---------| -| file://../lib | lib | 0.1.0 | - -## Values - -| Key | Description | Type | Default | -|-----|-------------|------|---------| - | erigonDefaults.replicaCount | | int | `0` | - | rpcdaemon.enabled | Enable a Deployment of rpcdaemon that can be scaled independently | bool | `true` | - | rpcdaemon.replicaCount | Number of replicas to run | int | `2` | - | statefulNode.enabled | | bool | `true` | - | statefulNode.replicaCount | | int | `1` | - | statefulNode.test | | string | `"{{ .ComponentValues.statefulNode.replicaCount }}"` | - ----------------------------------------------- -Autogenerated from chart metadata using [helm-docs v1.11.3](https://github.com/norwoodj/helm-docs/releases/v1.11.3) From 5ac0bbad7e3c8430c02204bf4ba66e7ae6fb85f5 Mon Sep 17 00:00:00 2001 From: Carlos Jorge Date: Mon, 28 Oct 2024 18:17:58 +0000 Subject: [PATCH 4/5] fix: final versions for when merging to main --- charts/arbitrum-classic/Chart.yaml | 2 +- charts/arbitrum-classic/README.md | 2 +- charts/arbitrum-nitro/Chart.yaml | 2 +- charts/arbitrum-nitro/README.md | 2 +- charts/celo/Chart.yaml | 2 +- charts/celo/README.md | 2 +- charts/erigon/Chart.yaml | 2 +- charts/erigon/README.md | 2 +- charts/heimdall/Chart.yaml | 2 +- charts/heimdall/README.md | 2 +- charts/lib/README.md | 8 ++++++++ charts/lighthouse/Chart.yaml | 2 +- charts/lighthouse/README.md | 2 +- charts/nimbus/Chart.yaml | 2 +- charts/nimbus/README.md | 2 +- charts/subgraph-radio/Chart.yaml | 2 +- charts/subgraph-radio/README.md | 2 +- charts/test-chart/README.md | 25 +++++++++++++++++++++++++ 18 files changed, 49 insertions(+), 16 deletions(-) create mode 100644 charts/lib/README.md create mode 100644 charts/test-chart/README.md diff --git a/charts/arbitrum-classic/Chart.yaml b/charts/arbitrum-classic/Chart.yaml index 2ab1477b..7c021cad 100644 --- a/charts/arbitrum-classic/Chart.yaml +++ b/charts/arbitrum-classic/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.3.0-canary.1 +version: 0.3.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/arbitrum-classic/README.md b/charts/arbitrum-classic/README.md index 77700964..eb60eba0 100644 --- a/charts/arbitrum-classic/README.md +++ b/charts/arbitrum-classic/README.md @@ -2,7 +2,7 @@ Deploy and scale [Arbitrum-Classic](https://github.com/OffchainLabs/arbitrum) 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.3.0-canary.1](https://img.shields.io/badge/Version-0.3.0--canary.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.4.5-e97c1a4](https://img.shields.io/badge/AppVersion-v1.4.5--e97c1a4-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.3.0](https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.4.5-e97c1a4](https://img.shields.io/badge/AppVersion-v1.4.5--e97c1a4-informational?style=flat-square) ## Features diff --git a/charts/arbitrum-nitro/Chart.yaml b/charts/arbitrum-nitro/Chart.yaml index f9f8adca..f002e3df 100644 --- a/charts/arbitrum-nitro/Chart.yaml +++ b/charts/arbitrum-nitro/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.6.0-canary.1 +version: 0.6.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/arbitrum-nitro/README.md b/charts/arbitrum-nitro/README.md index e6164ca0..f814109e 100644 --- a/charts/arbitrum-nitro/README.md +++ b/charts/arbitrum-nitro/README.md @@ -2,7 +2,7 @@ Deploy and scale [Arbitrum-Nitro](https://github.com/OffchainLabs/nitro/) 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.6.0-canary.1](https://img.shields.io/badge/Version-0.6.0--canary.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v3.2.1-d81324d](https://img.shields.io/badge/AppVersion-v3.2.1--d81324d-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.6.0](https://img.shields.io/badge/Version-0.6.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v3.2.1-d81324d](https://img.shields.io/badge/AppVersion-v3.2.1--d81324d-informational?style=flat-square) ## Features diff --git a/charts/celo/Chart.yaml b/charts/celo/Chart.yaml index b63efa45..8551f335 100644 --- a/charts/celo/Chart.yaml +++ b/charts/celo/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.2.0-canary.1 +version: 0.2.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/celo/README.md b/charts/celo/README.md index 9a444443..84e12f9b 100644 --- a/charts/celo/README.md +++ b/charts/celo/README.md @@ -2,7 +2,7 @@ Deploy and scale [Celo](https://github.com/celo-org/celo-blockchain) Nodes 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.2.0-canary.1](https://img.shields.io/badge/Version-0.2.0--canary.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.8.5](https://img.shields.io/badge/AppVersion-1.8.5-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.2.0](https://img.shields.io/badge/Version-0.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.8.5](https://img.shields.io/badge/AppVersion-1.8.5-informational?style=flat-square) ## Features diff --git a/charts/erigon/Chart.yaml b/charts/erigon/Chart.yaml index 264b8ceb..5899ac93 100644 --- a/charts/erigon/Chart.yaml +++ b/charts/erigon/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.11.0-canary.1 +version: 0.11.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/erigon/README.md b/charts/erigon/README.md index 44ad2572..64f1f120 100644 --- a/charts/erigon/README.md +++ b/charts/erigon/README.md @@ -2,7 +2,7 @@ Deploy and scale [Erigon](https://github.com/ledgerwatch/erigon) 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.11.0-canary.1](https://img.shields.io/badge/Version-0.11.0--canary.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.60.8](https://img.shields.io/badge/AppVersion-2.60.8-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.11.0](https://img.shields.io/badge/Version-0.11.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.60.8](https://img.shields.io/badge/AppVersion-2.60.8-informational?style=flat-square) ## Features diff --git a/charts/heimdall/Chart.yaml b/charts/heimdall/Chart.yaml index 0ed7d5fa..287cfae1 100644 --- a/charts/heimdall/Chart.yaml +++ b/charts/heimdall/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.3.0-canary.1 +version: 1.3.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/heimdall/README.md b/charts/heimdall/README.md index 33279c52..3729d903 100644 --- a/charts/heimdall/README.md +++ b/charts/heimdall/README.md @@ -2,7 +2,7 @@ Deploy and scale [Heimdall](https://github.com/maticnetwork/heimdall) inside Kubernetes with ease -[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![Version: 1.3.0-canary.1](https://img.shields.io/badge/Version-1.3.0--canary.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.10](https://img.shields.io/badge/AppVersion-1.0.10-informational?style=flat-square) +[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![Version: 1.3.0](https://img.shields.io/badge/Version-1.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.10](https://img.shields.io/badge/AppVersion-1.0.10-informational?style=flat-square) ## Features diff --git a/charts/lib/README.md b/charts/lib/README.md new file mode 100644 index 00000000..c4af7037 --- /dev/null +++ b/charts/lib/README.md @@ -0,0 +1,8 @@ +# lib + +![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: library](https://img.shields.io/badge/Type-library-informational?style=flat-square) ![AppVersion: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square) + +A Helm chart for Kubernetes + +---------------------------------------------- +Autogenerated from chart metadata using [helm-docs v1.11.3](https://github.com/norwoodj/helm-docs/releases/v1.11.3) diff --git a/charts/lighthouse/Chart.yaml b/charts/lighthouse/Chart.yaml index 54b553d9..d3f41c73 100644 --- a/charts/lighthouse/Chart.yaml +++ b/charts/lighthouse/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.6.0-canary.1 +version: 0.6.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/lighthouse/README.md b/charts/lighthouse/README.md index 4be0bb85..0d44ebac 100644 --- a/charts/lighthouse/README.md +++ b/charts/lighthouse/README.md @@ -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.6.0-canary.1](https://img.shields.io/badge/Version-0.6.0--canary.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v5.3.0](https://img.shields.io/badge/AppVersion-v5.3.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.6.0](https://img.shields.io/badge/Version-0.6.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v5.3.0](https://img.shields.io/badge/AppVersion-v5.3.0-informational?style=flat-square) ## Chart Features diff --git a/charts/nimbus/Chart.yaml b/charts/nimbus/Chart.yaml index e65927cc..61387c00 100644 --- a/charts/nimbus/Chart.yaml +++ b/charts/nimbus/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.6.0-canary.1 +version: 0.6.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/nimbus/README.md b/charts/nimbus/README.md index 6207172d..243b010d 100644 --- a/charts/nimbus/README.md +++ b/charts/nimbus/README.md @@ -2,7 +2,7 @@ Deploy and scale [Nimbus](https://github.com/status-im/nimbus-eth2) 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.6.0-canary.1](https://img.shields.io/badge/Version-0.6.0--canary.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: multiarch-v24.9.0](https://img.shields.io/badge/AppVersion-multiarch--v24.9.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.6.0](https://img.shields.io/badge/Version-0.6.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: multiarch-v24.9.0](https://img.shields.io/badge/AppVersion-multiarch--v24.9.0-informational?style=flat-square) ## Chart Features diff --git a/charts/subgraph-radio/Chart.yaml b/charts/subgraph-radio/Chart.yaml index d0441d5f..ddb2092c 100644 --- a/charts/subgraph-radio/Chart.yaml +++ b/charts/subgraph-radio/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.3.0-canary.1 +version: 0.3.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/subgraph-radio/README.md b/charts/subgraph-radio/README.md index 53fe53f8..75edd393 100644 --- a/charts/subgraph-radio/README.md +++ b/charts/subgraph-radio/README.md @@ -2,7 +2,7 @@ Deploy a Graphcast Subgraph Radio into your Kubernetes stack -[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![Version: 0.3.0-canary.1](https://img.shields.io/badge/Version-0.3.0--canary.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.6](https://img.shields.io/badge/AppVersion-1.0.6-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.3.0](https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.6](https://img.shields.io/badge/AppVersion-1.0.6-informational?style=flat-square) ## Introduction diff --git a/charts/test-chart/README.md b/charts/test-chart/README.md new file mode 100644 index 00000000..ecf810dc --- /dev/null +++ b/charts/test-chart/README.md @@ -0,0 +1,25 @@ +# test-chart + +![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square) + +A Helm chart for Kubernetes + +## Requirements + +| Repository | Name | Version | +|------------|------|---------| +| file://../lib | lib | 0.1.0 | + +## Values + +| Key | Description | Type | Default | +|-----|-------------|------|---------| + | erigonDefaults.replicaCount | | int | `0` | + | rpcdaemon.enabled | Enable a Deployment of rpcdaemon that can be scaled independently | bool | `true` | + | rpcdaemon.replicaCount | Number of replicas to run | int | `2` | + | statefulNode.enabled | | bool | `true` | + | statefulNode.replicaCount | | int | `1` | + | statefulNode.test | | string | `"{{ .ComponentValues.statefulNode.replicaCount }}"` | + +---------------------------------------------- +Autogenerated from chart metadata using [helm-docs v1.11.3](https://github.com/norwoodj/helm-docs/releases/v1.11.3) From 5052a5fdfe97ff00738138d385943dde3ac05947 Mon Sep 17 00:00:00 2001 From: Carlos Jorge Date: Mon, 28 Oct 2024 18:22:35 +0000 Subject: [PATCH 5/5] fix: remove wrongly commited files --- charts/lib/README.md | 8 -------- charts/test-chart/README.md | 25 ------------------------- 2 files changed, 33 deletions(-) delete mode 100644 charts/lib/README.md delete mode 100644 charts/test-chart/README.md diff --git a/charts/lib/README.md b/charts/lib/README.md deleted file mode 100644 index c4af7037..00000000 --- a/charts/lib/README.md +++ /dev/null @@ -1,8 +0,0 @@ -# lib - -![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: library](https://img.shields.io/badge/Type-library-informational?style=flat-square) ![AppVersion: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square) - -A Helm chart for Kubernetes - ----------------------------------------------- -Autogenerated from chart metadata using [helm-docs v1.11.3](https://github.com/norwoodj/helm-docs/releases/v1.11.3) diff --git a/charts/test-chart/README.md b/charts/test-chart/README.md deleted file mode 100644 index ecf810dc..00000000 --- a/charts/test-chart/README.md +++ /dev/null @@ -1,25 +0,0 @@ -# test-chart - -![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square) - -A Helm chart for Kubernetes - -## Requirements - -| Repository | Name | Version | -|------------|------|---------| -| file://../lib | lib | 0.1.0 | - -## Values - -| Key | Description | Type | Default | -|-----|-------------|------|---------| - | erigonDefaults.replicaCount | | int | `0` | - | rpcdaemon.enabled | Enable a Deployment of rpcdaemon that can be scaled independently | bool | `true` | - | rpcdaemon.replicaCount | Number of replicas to run | int | `2` | - | statefulNode.enabled | | bool | `true` | - | statefulNode.replicaCount | | int | `1` | - | statefulNode.test | | string | `"{{ .ComponentValues.statefulNode.replicaCount }}"` | - ----------------------------------------------- -Autogenerated from chart metadata using [helm-docs v1.11.3](https://github.com/norwoodj/helm-docs/releases/v1.11.3)