Skip to content

Commit

Permalink
feat: add nodeport to dugtrio and blutgang (#308)
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa committed Apr 16, 2024
1 parent a03634a commit df3dfaa
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/blutgang/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ icon: https://github.com/rainshowerLabs/blutgang/assets/55022497/ec668c7a-5f56-4
sources:
- https://github.com/rainshowerLabs/blutgang
type: application
version: 0.0.6
version: 0.0.7
maintainers:
- name: barnabasbusa
email: [email protected]
2 changes: 1 addition & 1 deletion charts/blutgang/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# blutgang

![Version: 0.0.6](https://img.shields.io/badge/Version-0.0.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.0.7](https://img.shields.io/badge/Version-0.0.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

Blutgang is a blazing fast, caching, minimalistic load balancer designed with Ethereum's JSON-RPC in mind. Historical RPC queries are cached in a local database, bypassing the need for slow, repeating calls to your node.

Expand Down
3 changes: 3 additions & 0 deletions charts/blutgang/ci/default-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ config: |
sort_on_startup = true
# Enable health checking
health_check = true
# Enable content type header checking. Set this to `true` if you want
# Blutgang to be JSON-RPC compliant.
header_check = true
# Acceptable time to wait for a response in ms
ttl = 300
# How many times to retry a request before giving up
Expand Down
3 changes: 3 additions & 0 deletions charts/blutgang/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ spec:
targetPort: http
protocol: TCP
name: http
{{- if eq .Values.service.type "NodePort" }}
nodePort: {{ .Values.service.nodePort }}
{{- end }}
{{- if .Values.adminNamespace.enabled }}
- port: {{ .Values.adminNamespace.adminPort }}
targetPort: admin
Expand Down
2 changes: 1 addition & 1 deletion charts/dugtrio/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ home: https://github.com/ethpandaops/dugtrio
sources:
- https://github.com/ethpandaops/dugtrio
type: application
version: 0.0.4
version: 0.0.5
appVersion: "1.0.0"
maintainers:
- name: pk910
Expand Down
2 changes: 1 addition & 1 deletion charts/dugtrio/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# dugtrio

![Version: 0.0.4](https://img.shields.io/badge/Version-0.0.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.0.5](https://img.shields.io/badge/Version-0.0.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

Fault tolerant load balancer for beacon chain RPC apis

Expand Down
3 changes: 3 additions & 0 deletions charts/dugtrio/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ spec:
targetPort: http
protocol: TCP
name: http
{{- if eq .Values.service.type "NodePort" }}
nodePort: {{ .Values.service.nodePort }}
{{- end }}
{{- if .Values.extraPorts }}
{{ toYaml .Values.extraPorts | nindent 4}}
{{- end }}
Expand Down

0 comments on commit df3dfaa

Please sign in to comment.