diff --git a/charts/web3signer-validators/Chart.yaml b/charts/web3signer-validators/Chart.yaml index 028ddf6bc..5898a0d45 100644 --- a/charts/web3signer-validators/Chart.yaml +++ b/charts/web3signer-validators/Chart.yaml @@ -15,14 +15,13 @@ 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: 5.1.2 - +version: 5.1.3 # 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 # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "v5.1.2" +appVersion: "v5.1.3" keywords: - ethereum diff --git a/charts/web3signer-validators/templates/statefulset.yaml b/charts/web3signer-validators/templates/statefulset.yaml index f777b75bc..57f31661e 100644 --- a/charts/web3signer-validators/templates/statefulset.yaml +++ b/charts/web3signer-validators/templates/statefulset.yaml @@ -93,8 +93,7 @@ spec: - "--fee-recipient" - "{{ $root.Values.suggestedFeeRecipient }}" {{- if $root.Values.enableBuilder }} - - "--disable-builder-enabled" - - "true" + - "--disable-proposal-builder" {{- end }} volumeMounts: - name: data diff --git a/charts/web3signer-validators/values.yaml b/charts/web3signer-validators/values.yaml index c546ec191..7870bc1a6 100644 --- a/charts/web3signer-validators/values.yaml +++ b/charts/web3signer-validators/values.yaml @@ -46,7 +46,7 @@ initImageBusybox: cliImage: registry: "europe-west4-docker.pkg.dev" repository: "stakewiselabs/public/v3-operator" - tag: "v0.3.4" + tag: "v1.0.2" pullPolicy: IfNotPresent ## Database connection string, ex. 'postgresql://username:pass@hostname/dbname' diff --git a/charts/web3signer/Chart.yaml b/charts/web3signer/Chart.yaml index 30024330e..6f75aff27 100644 --- a/charts/web3signer/Chart.yaml +++ b/charts/web3signer/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: 5.0.1 +version: 5.0.2 # 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 @@ -34,6 +34,6 @@ keywords: home: https://stakewise.io/ dependencies: -- name: common - repository: https://charts.stakewise.io/ - version: 1.x.x + - name: common + repository: https://charts.stakewise.io/ + version: 1.x.x diff --git a/charts/web3signer/templates/secret.yaml b/charts/web3signer/templates/secret.yaml index d635c1cbb..5b507fab9 100644 --- a/charts/web3signer/templates/secret.yaml +++ b/charts/web3signer/templates/secret.yaml @@ -8,7 +8,7 @@ stringData: config.yaml: | data-path: "/data/web3signer" key-store-path: "/data/keystore" - eth2.network: {{ .Values.network }} + eth2.network: {{ .Values.global.network }} logging: {{ .Values.loggingLevel }} eth2.slashing-protection-enabled: true eth2.slashing-protection-pruning-enabled: true diff --git a/charts/web3signer/templates/statefulset.yaml b/charts/web3signer/templates/statefulset.yaml index 98924aec5..2d9161671 100644 --- a/charts/web3signer/templates/statefulset.yaml +++ b/charts/web3signer/templates/statefulset.yaml @@ -62,15 +62,15 @@ spec: - src/main.py - remote-db - --network - {{ if eq .Values.network "prater"}} + {{ if eq .Values.global.network "prater"}} - goerli {{- else }} - - {{ .Values.network }} + - {{ .Values.global.network }} {{- end }} - --db-url - {{ .Values.dbKeystoreUrl }} - --vault - - {{ .Values.vault }} + - {{ .Values.global.vault }} - setup-web3signer - --encrypt-key - {{ .Values.decryptionKey }} diff --git a/charts/web3signer/values.yaml b/charts/web3signer/values.yaml index 35353b8a5..05e934144 100644 --- a/charts/web3signer/values.yaml +++ b/charts/web3signer/values.yaml @@ -35,7 +35,7 @@ initImage: cliImage: registry: "europe-west4-docker.pkg.dev" repository: "stakewiselabs/public/v3-operator" - tag: "v0.3.4" + tag: "v1.0.2" pullPolicy: IfNotPresent ## Database connection string, ex. 'postgresql://username:pass@hostname/dbname' @@ -64,7 +64,6 @@ nameOverride: "" ## fullnameOverride: "" - ## Web3Signer Settings ## ref: https://docs.web3signer.consensys.net/en/latest/Reference/CLI/CLI-Syntax/ ## @@ -138,12 +137,12 @@ podSecurityContext: runAsUser: 1000 securityContext: {} - # capabilities: - # drop: - # - ALL - # readOnlyRootFilesystem: true - # runAsNonRoot: true - # runAsUser: 1000 +# capabilities: +# drop: +# - ALL +# readOnlyRootFilesystem: true +# runAsNonRoot: true +# runAsUser: 1000 service: type: ClusterIP @@ -153,16 +152,16 @@ service: ## ref: http://kubernetes.io/docs/user-guide/compute-resources/ ## resources: {} - # We usually recommend not to specify default resources and to leave this as a conscious - # choice for the user. This also increases chances charts run on environments with little - # resources, such as Minikube. If you do want to specify resources, uncomment the following - # lines, adjust them as necessary, and remove the curly braces after 'resources:'. - # limits: - # cpu: 100m - # memory: 128Mi - # requests: - # cpu: 100m - # memory: 128Mi +# We usually recommend not to specify default resources and to leave this as a conscious +# choice for the user. This also increases chances charts run on environments with little +# resources, such as Minikube. If you do want to specify resources, uncomment the following +# lines, adjust them as necessary, and remove the curly braces after 'resources:'. +# limits: +# cpu: 1000m +# memory: 2048Mi +# requests: +# cpu: 500m +# memory: 1024Mi ## Node labels for pod assignment ## ref: https://kubernetes.io/docs/user-guide/node-selection/