From e673fe5da4016f9e312cc01a85efc123768212e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20J=C4=99drzejewski?= Date: Sat, 18 Jan 2025 13:19:12 +0100 Subject: [PATCH] move distributed flag globally for vc, bump version --- charts/validators/Chart.yaml | 2 +- charts/validators/templates/statefulset.yaml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/validators/Chart.yaml b/charts/validators/Chart.yaml index aa112285..343591b7 100644 --- a/charts/validators/Chart.yaml +++ b/charts/validators/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.0.7 +version: 1.0.8 # 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/validators/templates/statefulset.yaml b/charts/validators/templates/statefulset.yaml index 6e9049d7..7a6f93bc 100644 --- a/charts/validators/templates/statefulset.yaml +++ b/charts/validators/templates/statefulset.yaml @@ -179,9 +179,6 @@ spec: - "--validators-external-signer-url={{ include "web3signer" $root }}" {{- else if eq $root.Values.type "lighthouse" }} - "--network={{ $root.Values.network }}" - {{- if $root.Values.dvt.enabled }} - - "--distributed" - {{- end }} {{- else if eq $root.Values.type "teku" }} - "--network=auto" - "--config-file=/data/config" @@ -196,6 +193,9 @@ spec: - "--validators-proposer-blinded-blocks-enabled=true" {{- end }} {{- end }} + {{- if $root.Values.dvt.enabled }} + - "--distributed" + {{- end }} {{- include "validator-graffiti" $ | nindent 12 }}