Skip to content

Commit

Permalink
[bor] fix ingress ports
Browse files Browse the repository at this point in the history
  • Loading branch information
VladStarr committed Aug 14, 2024
1 parent 42f6d97 commit 430b3f0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dysnix/bor/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: bor
description: Polygon Bor execution layer node Helm chart

version: 0.0.7
appVersion: "1.1.0"
version: 0.0.8
appVersion: "1.3.7"

keywords:
- geth
Expand Down
2 changes: 1 addition & 1 deletion dysnix/bor/templates/ingress-http.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{{- if and .Values.services.rpc.enabled .Values.ingress.http.enabled -}}
{{- $fullName := include "bor.fullname" . -}}
{{- $svcPort := .Values.services.rpc.httpPort -}}
{{- $svcPort := .Values.services.rpc.http.port -}}
{{- if and .Values.ingress.http.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }}
{{- if not (hasKey .Values.ingress.http.annotations "kubernetes.io/ingress.class") }}
{{- $_ := set .Values.ingress.http.annotations "kubernetes.io/ingress.class" .Values.ingress.http.className}}
Expand Down
2 changes: 1 addition & 1 deletion dysnix/bor/templates/ingress-ws.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{{- if and .Values.services.rpc.enabled .Values.ingress.ws.enabled -}}
{{- $fullName := include "bor.fullname" . -}}
{{- $svcPort := .Values.services.rpc.wsPort -}}
{{- $svcPort := .Values.services.rpc.ws.port -}}
{{- if and .Values.ingress.ws.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }}
{{- if not (hasKey .Values.ingress.ws.annotations "kubernetes.io/ingress.class") }}
{{- $_ := set .Values.ingress.ws.annotations "kubernetes.io/ingress.class" .Values.ingress.ws.className}}
Expand Down

0 comments on commit 430b3f0

Please sign in to comment.