diff --git a/charts/substrate-telemetry/Chart.yaml b/charts/substrate-telemetry/Chart.yaml index 28c17917..078ceb2d 100644 --- a/charts/substrate-telemetry/Chart.yaml +++ b/charts/substrate-telemetry/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: "2.0.3" +version: "2.0.4" # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/substrate-telemetry/templates/core-deployment.yaml b/charts/substrate-telemetry/templates/core-deployment.yaml index f395ecc9..0d6dcfb0 100644 --- a/charts/substrate-telemetry/templates/core-deployment.yaml +++ b/charts/substrate-telemetry/templates/core-deployment.yaml @@ -61,7 +61,7 @@ spec: path: /health port: http resources: - {{- toYaml .Values.core.resources | nindent 12 }} + {{- toYaml .Values.resources.core | nindent 12 }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} diff --git a/charts/substrate-telemetry/templates/frontend-deployment.yaml b/charts/substrate-telemetry/templates/frontend-deployment.yaml index 67a41226..4dc11cbf 100644 --- a/charts/substrate-telemetry/templates/frontend-deployment.yaml +++ b/charts/substrate-telemetry/templates/frontend-deployment.yaml @@ -56,7 +56,7 @@ spec: path: / port: http resources: - {{- toYaml .Values.frontend.resources | nindent 12 }} + {{- toYaml .Values.resources.frontend | nindent 12 }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} diff --git a/charts/substrate-telemetry/templates/shard-deployment.yaml b/charts/substrate-telemetry/templates/shard-deployment.yaml index e6949d51..180be18d 100644 --- a/charts/substrate-telemetry/templates/shard-deployment.yaml +++ b/charts/substrate-telemetry/templates/shard-deployment.yaml @@ -63,7 +63,7 @@ spec: path: /health port: http resources: - {{- toYaml .Values.shard.resources | nindent 12 }} + {{- toYaml .Values.resources.shard | nindent 12 }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }}