Skip to content

Commit cfd5b3d

Browse files
authored
fix bad ingress (ethpandaops#137) (ethpandaops#140)
* rebase master * fix linter Signed-off-by: Barnabas Busa <[email protected]>
1 parent 3619b1e commit cfd5b3d

28 files changed

+28
-27
lines changed

charts/besu/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ icon: https://launchpad.ethereum.org/static/media/hyperledger-besu-circle.b96368
88
sources:
99
- https://github.com/hyperledger/besu
1010
type: application
11-
version: 0.3.8
11+
version: 0.3.9
1212
maintainers:
1313
- name: skylenet
1414

charts/besu/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# besu
33

4-
![Version: 0.3.8](https://img.shields.io/badge/Version-0.3.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
4+
![Version: 0.3.9](https://img.shields.io/badge/Version-0.3.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
55

66
An Ethereum execution layer client designed to be enterprise-friendly for both public and private, permissioned network use cases. Besu is written in Java and released under the Apache 2.0 Licence.
77

charts/besu/templates/ingress.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{{- if .Values.ingress.enabled -}}
22
{{- $fullName := include "besu.fullname" . -}}
3-
{{- $svcPort := include "besu.httpPort" . -}}
3+
{{- $svcPort := .Values.httpPort -}}
44
{{- if and .Values.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }}
55
{{- if not (hasKey .Values.ingress.annotations "kubernetes.io/ingress.class") }}
66
{{- $_ := set .Values.ingress.annotations "kubernetes.io/ingress.class" .Values.ingress.className}}

charts/erigon/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ icon: https://pbs.twimg.com/profile_images/1420080204148576274/-4OFIs2x_400x400.
66
sources:
77
- https://github.com/ledgerwatch/erigon
88
type: application
9-
version: 0.3.6
9+
version: 0.3.7
1010
maintainers:
1111
- name: skylenet
1212

charts/erigon/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# erigon
33

4-
![Version: 0.3.6](https://img.shields.io/badge/Version-0.3.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
4+
![Version: 0.3.7](https://img.shields.io/badge/Version-0.3.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
55

66
Erigon, formerly known as Turbo‐Geth, is a fork of Go Ethereum (geth) oriented toward speed and disk‐space efficiency. Erigon is a completely re-architected implementation of Ethereum, currently written in Go but with implementations in other languages planned. Erigon's goal is to provide a faster, more modular, and more optimized implementation of Ethereum.
77

charts/erigon/templates/ingress.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{{- if .Values.ingress.enabled -}}
22
{{- $fullName := include "erigon.fullname" . -}}
3-
{{- $svcPort := include "erigon.httpPort" . -}}
3+
{{- $svcPort := .Values.httpPort -}}
44
{{- if and .Values.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }}
55
{{- if not (hasKey .Values.ingress.annotations "kubernetes.io/ingress.class") }}
66
{{- $_ := set .Values.ingress.annotations "kubernetes.io/ingress.class" .Values.ingress.className}}

charts/geth/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ icon: https://launchpad.ethereum.org/static/media/gethereum-mascot-circle.75cbd3
99
sources:
1010
- https://github.com/ethereum/go-ethereum
1111
type: application
12-
version: 0.3.3
12+
version: 0.3.4
1313
maintainers:
1414
- name: skylenet
1515

charts/geth/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# geth
33

4-
![Version: 0.3.3](https://img.shields.io/badge/Version-0.3.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
4+
![Version: 0.3.4](https://img.shields.io/badge/Version-0.3.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
55

66
Go Ethereum (Geth for short) is one of the original implementations of the Ethereum protocol. Currently, it is the most widespread client with the biggest user base and variety of tooling for users and developers. It is written in Go, fully open source and licensed under the GNU LGPL v3
77

charts/geth/templates/ingress.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{{- if .Values.ingress.enabled -}}
22
{{- $fullName := include "geth.fullname" . -}}
3-
{{- $svcPort := include "geth.httpPort" . -}}
3+
{{- $svcPort := .Values.httpPort -}}
44
{{- if and .Values.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }}
55
{{- if not (hasKey .Values.ingress.annotations "kubernetes.io/ingress.class") }}
66
{{- $_ := set .Values.ingress.annotations "kubernetes.io/ingress.class" .Values.ingress.className}}

charts/lighthouse/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ icon: https://launchpad.ethereum.org/static/media/lighthouse-circle.e0b82d14.png
66
sources:
77
- https://github.com/sigp/lighthouse
88
type: application
9-
version: 0.2.6
9+
version: 0.2.7
1010
maintainers:
1111
- name: skylenet
1212

charts/lighthouse/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# lighthouse
33

4-
![Version: 0.2.6](https://img.shields.io/badge/Version-0.2.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
4+
![Version: 0.2.7](https://img.shields.io/badge/Version-0.2.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
55

66
An open-source Ethereum 2.0 client, written in Rust
77

charts/lighthouse/templates/ingress.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{{- if .Values.ingress.enabled -}}
22
{{- $fullName := include "lighthouse.fullname" . -}}
3-
{{- $svcPort := include "lighthouse.httpPort" . -}}
3+
{{- $svcPort := .Values.httpPort -}}
44
{{- if and .Values.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }}
55
{{- if not (hasKey .Values.ingress.annotations "kubernetes.io/ingress.class") }}
66
{{- $_ := set .Values.ingress.annotations "kubernetes.io/ingress.class" .Values.ingress.className}}

charts/lodestar/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ icon: https://raw.githubusercontent.com/ChainSafe/lodestar/master/assets/lodesta
66
sources:
77
- https://github.com/ChainSafe/lodestar
88
type: application
9-
version: 0.2.7
9+
version: 0.2.8
1010
maintainers:
1111
- name: skylenet
1212

charts/lodestar/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# lodestar
33

4-
![Version: 0.2.7](https://img.shields.io/badge/Version-0.2.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
4+
![Version: 0.2.8](https://img.shields.io/badge/Version-0.2.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
55

66
Lodestar is a open-source TypeScript implementation of the Ethereum consensus engine.
77

charts/lodestar/templates/ingress.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{{- if .Values.ingress.enabled -}}
22
{{- $fullName := include "lodestar.fullname" . -}}
3-
{{- $svcPort := include "lodestar.httpPort" . -}}
3+
{{- $svcPort := .Values.httpPort -}}
44
{{- if and .Values.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }}
55
{{- if not (hasKey .Values.ingress.annotations "kubernetes.io/ingress.class") }}
66
{{- $_ := set .Values.ingress.annotations "kubernetes.io/ingress.class" .Values.ingress.className}}

charts/lodestar/values.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ image:
1212
repository: chainsafe/lodestar
1313
# -- lodestar container image tag
1414
tag: v1.2.2
15+
1516
# -- lodestar container pull policy
1617
pullPolicy: IfNotPresent
1718

charts/nethermind/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ icon: https://launchpad.ethereum.org/static/media/nethermind-circle.fbbf1a32.png
77
sources:
88
- https://github.com/NethermindEth/nethermind
99
type: application
10-
version: 0.3.5
10+
version: 0.3.6
1111
maintainers:
1212
- name: skylenet
1313

charts/nethermind/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# nethermind
33

4-
![Version: 0.3.5](https://img.shields.io/badge/Version-0.3.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
4+
![Version: 0.3.6](https://img.shields.io/badge/Version-0.3.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
55

66
Nethermind is an Ethereum execution layer implementation created with the C# .NET tech stack, running on all major platforms including ARM.
77

charts/nethermind/templates/ingress.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{{- if .Values.ingress.enabled -}}
22
{{- $fullName := include "nethermind.fullname" . -}}
3-
{{- $svcPort := include "nethermind.httpPort" . -}}
3+
{{- $svcPort := .Values.httpPort -}}
44
{{- if and .Values.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }}
55
{{- if not (hasKey .Values.ingress.annotations "kubernetes.io/ingress.class") }}
66
{{- $_ := set .Values.ingress.annotations "kubernetes.io/ingress.class" .Values.ingress.className}}

charts/nimbus/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ icon: https://launchpad.ethereum.org/static/media/nimbus-circle.2752d77b.png
66
sources:
77
- https://github.com/status-im/nimbus-eth2
88
type: application
9-
version: 0.4.7
9+
version: 0.4.8
1010
maintainers:
1111
- name: skylenet
1212

charts/nimbus/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# nimbus
33

4-
![Version: 0.4.7](https://img.shields.io/badge/Version-0.4.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
4+
![Version: 0.4.8](https://img.shields.io/badge/Version-0.4.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
55

66
An open-source Ethereum consensus layer client, written in Java
77

charts/nimbus/templates/ingress.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{{- if .Values.ingress.enabled -}}
22
{{- $fullName := include "nimbus.fullname" . -}}
3-
{{- $svcPort := include "nimbus.httpPort" . -}}
3+
{{- $svcPort := .Values.httpPort -}}
44
{{- if and .Values.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }}
55
{{- if not (hasKey .Values.ingress.annotations "kubernetes.io/ingress.class") }}
66
{{- $_ := set .Values.ingress.annotations "kubernetes.io/ingress.class" .Values.ingress.className}}

charts/prysm/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ icon: https://launchpad.ethereum.org/static/media/prysmatic-labs-circle.96c803fe
66
sources:
77
- https://github.com/prysmaticlabs/prysm
88
type: application
9-
version: 0.2.5
9+
version: 0.2.6
1010
maintainers:
1111
- name: skylenet
1212

charts/prysm/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# prysm
33

4-
![Version: 0.2.5](https://img.shields.io/badge/Version-0.2.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
4+
![Version: 0.2.6](https://img.shields.io/badge/Version-0.2.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
55

66
An open-source Ethereum 2.0 client, written in Go
77

charts/prysm/templates/ingress.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{{- if .Values.ingress.enabled -}}
22
{{- $fullName := include "prysm.fullname" . -}}
3-
{{- $svcPort := include "prysm.httpPort" . -}}
3+
{{- $svcPort := .Values.httpPort -}}
44
{{- if and .Values.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }}
55
{{- if not (hasKey .Values.ingress.annotations "kubernetes.io/ingress.class") }}
66
{{- $_ := set .Values.ingress.annotations "kubernetes.io/ingress.class" .Values.ingress.className}}

charts/teku/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ icon: https://launchpad.ethereum.org/static/media/pegasys-teku-circle.4147bb69.p
66
sources:
77
- https://github.com/Consensys/teku/
88
type: application
9-
version: 0.2.8
9+
version: 0.2.9
1010
maintainers:
1111
- name: skylenet
1212

charts/teku/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# teku
33

4-
![Version: 0.2.8](https://img.shields.io/badge/Version-0.2.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
4+
![Version: 0.2.9](https://img.shields.io/badge/Version-0.2.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
55

66
An open-source Ethereum 2.0 client, written in Java
77

charts/teku/templates/ingress.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{{- if .Values.ingress.enabled -}}
22
{{- $fullName := include "teku.fullname" . -}}
3-
{{- $svcPort := include "teku.httpPort" . -}}
3+
{{- $svcPort := .Values.httpPort -}}
44
{{- if and .Values.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }}
55
{{- if not (hasKey .Values.ingress.annotations "kubernetes.io/ingress.class") }}
66
{{- $_ := set .Values.ingress.annotations "kubernetes.io/ingress.class" .Values.ingress.className}}

0 commit comments

Comments
 (0)