Skip to content

Commit

Permalink
Fix helm chart port definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmcgary committed Nov 15, 2024
1 parent f951614 commit 9a42b41
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/sidecar/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ description: A Helm chart for the EigenLayer sidecar

type: application

version: 0.1.0-beta.4
version: 0.1.0-beta.5

appVersion: "v1.0.0-beta.4"
2 changes: 1 addition & 1 deletion charts/sidecar/templates/sidecarStatefulSet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
ports:
{{- range $k, $v := .Values.sidecar.ports }}
- name: {{ $v.name }}
containerPort: {{ $v.containerPort }}
containerPort: {{ $v.targetPort }}
protocol: {{ $v.protocol }}
{{- end -}}
{{- end }}
Expand Down
6 changes: 3 additions & 3 deletions charts/sidecar/values.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
image:
repository: public.ecr.aws/z6g0f8n7/sidecar
pullPolicy: Always
tag: "v1.0.0-beta.4"
tag: "v1.0.0-beta.5"

sidecar:
replicas: 1
Expand All @@ -23,11 +23,11 @@ sidecar:
ports:
- name: grpc
port: 7100
containerPort: 7100
targetPort: 7100
protocol: TCP
- name: http
port: 7101
containerPort: 7101
targetPort: 7101
protocol: TCP
resources: {}
metadataLabels: {}
Expand Down

0 comments on commit 9a42b41

Please sign in to comment.