From c8d26b588ac015fc935176f1d8084c4aab2fddd4 Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Mon, 12 Feb 2024 12:55:17 +1000 Subject: [PATCH] fix(tracoor-server): Add GRPC port (#285) --- charts/tracoor-server/Chart.yaml | 2 +- charts/tracoor-server/README.md | 2 +- charts/tracoor-server/templates/deployment.yaml | 3 +++ 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/charts/tracoor-server/Chart.yaml b/charts/tracoor-server/Chart.yaml index b64bf05a..9e826a93 100644 --- a/charts/tracoor-server/Chart.yaml +++ b/charts/tracoor-server/Chart.yaml @@ -3,7 +3,7 @@ name: tracoor-server description: Ethereum debug data capture and indexer home: https://github.com/ethpandaops/tracoor type: application -version: 0.0.1 +version: 0.0.2 maintainers: - name: samcm email: sam.calder-mason@ethereum.org diff --git a/charts/tracoor-server/README.md b/charts/tracoor-server/README.md index 148e6bd2..8fc21374 100644 --- a/charts/tracoor-server/README.md +++ b/charts/tracoor-server/README.md @@ -1,7 +1,7 @@ # tracoor-server -![Version: 0.0.1](https://img.shields.io/badge/Version-0.0.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.0.2](https://img.shields.io/badge/Version-0.0.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Ethereum debug data capture and indexer diff --git a/charts/tracoor-server/templates/deployment.yaml b/charts/tracoor-server/templates/deployment.yaml index f545bdbd..7cc3b2f3 100644 --- a/charts/tracoor-server/templates/deployment.yaml +++ b/charts/tracoor-server/templates/deployment.yaml @@ -75,6 +75,9 @@ spec: - name: metrics containerPort: {{ include "tracoor-server.metricsPort" . }} protocol: TCP + - name: grpc + containerPort: {{ include "tracoor-server.grpcPort" . }} + protocol: TCP {{- if (include "tracoor-server.pprofPort" .) }} - name: pprof containerPort: {{ include "tracoor-server.pprofPort" . }}