Skip to content

Commit

Permalink
change enabled to default
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa committed Jun 20, 2023
1 parent 97f4c13 commit 86ae44f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions charts/ethereum-node/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ lighthouse:
httpPort: 5052
p2pPort: 9000
checkpointSync:
enabled: "{{ .Values.global.checkpointSync.enabled | default "false" }}"
enabled: "{{ default .Values.global.checkpointSync.enabled "false" }}"
url: "{{ index .Values.global.checkpointSync.addresses .Values.global.main.network }}"
extraArgs:
- >-
Expand All @@ -231,7 +231,7 @@ teku:
httpPort: 5052
p2pPort: 9000
checkpointSync:
enabled: "{{ .Values.global.checkpointSync.enabled | default "false" }}"
enabled: "{{ default .Values.global.checkpointSync.enabled "false" }}"
url: "{{ index .Values.global.checkpointSync.addresses .Values.global.main.network }}"
extraArgs:
- >-
Expand All @@ -248,7 +248,7 @@ lodestar:
httpPort: 5052
p2pPort: 9000
checkpointSync:
enabled: "{{ .Values.global.checkpointSync.enabled | default "false" }}"
enabled: "{{ default .Values.global.checkpointSync.enabled "false" }}"
url: "{{ index .Values.global.checkpointSync.addresses .Values.global.main.network }}"
extraArgs:
- >-
Expand All @@ -265,7 +265,7 @@ prysm:
httpPort: 5052
p2pPort: 9000
checkpointSync:
enabled: "{{ .Values.global.checkpointSync.enabled | default "false" }}"
enabled: "{{ default .Values.global.checkpointSync.enabled "false" }}"
url: "{{ index .Values.global.checkpointSync.addresses .Values.global.main.network }}"
extraArgs:
- >-
Expand All @@ -282,7 +282,7 @@ nimbus:
httpPort: 5052
p2pPort: 9000
checkpointSync:
enabled: "{{ .Values.global.checkpointSync.enabled | default "false" }}"
enabled: "{{ default .Values.global.checkpointSync.enabled "false" }}"
url: "{{ index .Values.global.checkpointSync.addresses .Values.global.main.network }}"
network: "{{ .Values.global.main.network }}"
extraArgs:
Expand Down

0 comments on commit 86ae44f

Please sign in to comment.