Skip to content

Commit

Permalink
feat(erigon): allow any vhost for rpc by default
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswessels committed Jul 8, 2022
1 parent 5582956 commit 5d9d0b0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/erigon/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.3
version: 0.1.4

# 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
Expand Down
2 changes: 1 addition & 1 deletion charts/erigon/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.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) ![AppVersion: v2022.07.02](https://img.shields.io/badge/AppVersion-v2022.07.02-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.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) ![AppVersion: v2022.07.02](https://img.shields.io/badge/AppVersion-v2022.07.02-informational?style=flat-square)

## Features

Expand Down
3 changes: 2 additions & 1 deletion charts/erigon/templates/rpcdaemons/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ spec:
- --metrics
- --metrics.addr=0.0.0.0
- --metrics.port=6061
- --http.vhosts=*
{{- with $values.extraArgs }}
{{- toYaml (. | default list) | nindent 12 }}
{{- end }}
Expand Down Expand Up @@ -106,4 +107,4 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- end }}
{{- end }}
1 change: 1 addition & 0 deletions charts/erigon/templates/stateful-node/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ spec:
- --healthcheck
- --metrics
- --metrics.addr=0.0.0.0
- --http.vhosts=*
{{- with $values.extraArgs }}
{{- toYaml (. | default list) | nindent 12 }}
{{- end }}
Expand Down

0 comments on commit 5d9d0b0

Please sign in to comment.