Skip to content

Commit

Permalink
fix(node): fix parse errors
Browse files Browse the repository at this point in the history
  • Loading branch information
narfdre committed Dec 18, 2024
1 parent 3c19b98 commit 6abc26e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/nes-node-web/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ name: nes-node-web
description: A Helm chart for NES Node apps on Kubernetes

type: application
version: 0.1.12
version: 0.1.13
8 changes: 4 additions & 4 deletions charts/nes-node-web/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ spec:
{{- end }}
resources:
limits:
memory: {{ default '350Mi' .Values.resources.limits.memory }}
cpu: {{ default '110m' .Values.resources.limits.cpu }}
memory: {{ default "350Mi" .Values.resources.limits.memory }}
cpu: {{ default "110m" .Values.resources.limits.cpu }}
requests:
memory: {{ default '300Mi' .Values.resources.requests.memory }}
cpu: {{ default '100m' .Values.resources.requests.cpu }}
memory: {{ default "300Mi" .Values.resources.requests.memory }}
cpu: {{ default "100m" .Values.resources.requests.cpu }}
{{- if .Values.liveness.enabled }}
livenessProbe:
httpGet:
Expand Down

0 comments on commit 6abc26e

Please sign in to comment.