Skip to content

Commit

Permalink
Change replicas check condition
Browse files Browse the repository at this point in the history
Co-authored-by: Zadkiel AHARONIAN <[email protected]>
  • Loading branch information
ElfoLiNk and aslafy-z authored Oct 1, 2024
1 parent dd01f83 commit af09020
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ metadata:
name: {{ template "application.name" . }}
namespace: {{ include "application.namespace" . }}
spec:
{{- if not (quote .Values.deployment.replicas | empty) }}
{{- if not (eq .Values.deployment.replicas nil) }}
replicas: {{ .Values.deployment.replicas }}
{{- end }}
selector:
Expand Down

0 comments on commit af09020

Please sign in to comment.