diff --git a/charts/cache/Chart.yaml b/charts/cache/Chart.yaml index 21e3710..ddb0bc1 100644 --- a/charts/cache/Chart.yaml +++ b/charts/cache/Chart.yaml @@ -6,7 +6,7 @@ icon: https://github.com/lavanet/helm-charts/blob/main/docs/logo/logo.png?raw=tr sources: - https://github.com/lavanet/helm-charts type: application -version: 0.5.12 +version: 0.5.13 appVersion: "v2.5.0" kubeVersion: ">=1.25.0-0" home: https://lavanet.xyz diff --git a/charts/cache/README.md b/charts/cache/README.md index 5b93882..b3f80d3 100644 --- a/charts/cache/README.md +++ b/charts/cache/README.md @@ -2,7 +2,7 @@ Lava helm chart for the cache service -![Version: 0.5.12](https://img.shields.io/badge/Version-0.5.12-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.5.0](https://img.shields.io/badge/AppVersion-v2.5.0-informational?style=flat-square) +![Version: 0.5.13](https://img.shields.io/badge/Version-0.5.13-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.5.0](https://img.shields.io/badge/AppVersion-v2.5.0-informational?style=flat-square) ## Lavanet Cache Helm Chart diff --git a/charts/consumer/Chart.yaml b/charts/consumer/Chart.yaml index 428e70b..9c8bb62 100644 --- a/charts/consumer/Chart.yaml +++ b/charts/consumer/Chart.yaml @@ -6,7 +6,7 @@ icon: https://github.com/lavanet/helm-charts/blob/main/docs/logo/logo.png?raw=tr sources: - https://github.com/lavanet/helm-charts type: application -version: 0.5.12 +version: 0.5.13 appVersion: "v2.5.0" kubeVersion: ">=1.25.0-0" home: https://lavanet.xyz diff --git a/charts/consumer/README.md b/charts/consumer/README.md index 49f3d7b..6fc99e8 100644 --- a/charts/consumer/README.md +++ b/charts/consumer/README.md @@ -2,7 +2,7 @@ Lava helm chart for the consumer service -![Version: 0.5.12](https://img.shields.io/badge/Version-0.5.12-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.5.0](https://img.shields.io/badge/AppVersion-v2.5.0-informational?style=flat-square) +![Version: 0.5.13](https://img.shields.io/badge/Version-0.5.13-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.5.0](https://img.shields.io/badge/AppVersion-v2.5.0-informational?style=flat-square) ## Lavanet Consumer Helm Chart diff --git a/charts/consumer/templates/deployment.yaml b/charts/consumer/templates/deployment.yaml index ad60a20..e3e3092 100644 --- a/charts/consumer/templates/deployment.yaml +++ b/charts/consumer/templates/deployment.yaml @@ -106,8 +106,8 @@ spec: {{- end }} ports: {{- $interfaces := dict }} - {{- range .interfaces }} - {{- $_ := set $interfaces .interface . }} + {{- range $interfaceDetails := $itemValue.interfaces }} + {{- $_ := set $interfaces $interfaceDetails.interface . }} {{- end }} {{- range $interfaceEntry := $interfaces }} - name: {{ $interfaceEntry.interface | lower }} diff --git a/charts/consumer/templates/ingress-grpc.yaml b/charts/consumer/templates/ingress-grpc.yaml index 73a31a6..52f049f 100644 --- a/charts/consumer/templates/ingress-grpc.yaml +++ b/charts/consumer/templates/ingress-grpc.yaml @@ -18,8 +18,8 @@ spec: - hosts: {{- range $itemKey, $itemValue := $.Values.chains }} {{- $interfaces := dict }} - {{- range .interfaces }} - {{- $_ := set $interfaces .interface . }} + {{- range $interfaceDetails := $itemValue.interfaces }} + {{- $_ := set $interfaces $interfaceDetails.interface . }} {{- end }} {{- range $interfaceEntry := $interfaces }} {{- if (eq ($interfaceEntry.interface | lower) "grpc") }} @@ -32,8 +32,8 @@ spec: rules: {{- range $itemKey, $itemValue := $.Values.chains }} {{- $interfaces := dict }} - {{- range .interfaces }} - {{- $_ := set $interfaces .interface . }} + {{- range $interfaceDetails := $itemValue.interfaces }} + {{- $_ := set $interfaces $interfaceDetails.interface . }} {{- end }} {{- range $interfaceEntry := $interfaces }} {{- if (eq ($interfaceEntry.interface | lower) "grpc") }} diff --git a/charts/consumer/templates/ingress.yaml b/charts/consumer/templates/ingress.yaml index a97989e..7ea189c 100644 --- a/charts/consumer/templates/ingress.yaml +++ b/charts/consumer/templates/ingress.yaml @@ -18,8 +18,8 @@ spec: - hosts: {{- range $itemKey, $itemValue := $.Values.chains }} {{- $interfaces := dict }} - {{- range .interfaces }} - {{- $_ := set $interfaces .interface . }} + {{- range $interfaceDetails := $itemValue.interfaces }} + {{- $_ := set $interfaces $interfaceDetails.interface . }} {{- end }} {{- range $interfaceEntry := $interfaces }} {{- if (ne ($interfaceEntry.interface | lower) "grpc") }} @@ -32,8 +32,8 @@ spec: rules: {{- range $itemKey, $itemValue := $.Values.chains }} {{- $interfaces := dict }} - {{- range .interfaces }} - {{- $_ := set $interfaces .interface . }} + {{- range $interfaceDetails := $itemValue.interfaces }} + {{- $_ := set $interfaces $interfaceDetails.interface . }} {{- end }} {{- range $interfaceEntry := $interfaces }} {{- if (ne ($interfaceEntry.interface | lower) "grpc") }} diff --git a/charts/consumer/templates/service.yaml b/charts/consumer/templates/service.yaml index 6eb6e33..e3af15a 100644 --- a/charts/consumer/templates/service.yaml +++ b/charts/consumer/templates/service.yaml @@ -11,8 +11,8 @@ spec: type: {{ $.Values.service.type }} ports: {{- $interfaces := dict }} - {{- range .interfaces }} - {{- $_ := set $interfaces .interface . }} + {{- range $interfaceDetails := $itemValue.interfaces }} + {{- $_ := set $interfaces $interfaceDetails.interface . }} {{- end }} {{- range $interfaceEntry := $interfaces }} - port: {{ $interfaceEntry.port }} diff --git a/charts/provider/Chart.yaml b/charts/provider/Chart.yaml index e92a478..59c4f90 100644 --- a/charts/provider/Chart.yaml +++ b/charts/provider/Chart.yaml @@ -6,7 +6,7 @@ icon: https://github.com/lavanet/helm-charts/blob/main/docs/logo/logo.png?raw=tr sources: - https://github.com/lavanet/helm-charts type: application -version: 0.5.12 +version: 0.5.13 appVersion: "v2.5.0" kubeVersion: ">=1.25.0-0" home: https://lavanet.xyz diff --git a/charts/provider/README.md b/charts/provider/README.md index f71e632..5a33934 100644 --- a/charts/provider/README.md +++ b/charts/provider/README.md @@ -2,7 +2,7 @@ Lava helm chart for the provider service -![Version: 0.5.12](https://img.shields.io/badge/Version-0.5.12-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.5.0](https://img.shields.io/badge/AppVersion-v2.5.0-informational?style=flat-square) +![Version: 0.5.13](https://img.shields.io/badge/Version-0.5.13-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.5.0](https://img.shields.io/badge/AppVersion-v2.5.0-informational?style=flat-square) ## Lavanet Provider Helm Chart