Skip to content

Commit

Permalink
feat(deployment): allow setting replicas to zero #minor (#352)
Browse files Browse the repository at this point in the history
  • Loading branch information
ElfoLiNk authored Oct 1, 2024
1 parent a00bbcc commit 9b82e9b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions 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 .Values.deployment.replicas }}
{{- if not (eq .Values.deployment.replicas nil) }}
replicas: {{ .Values.deployment.replicas }}
{{- end }}
selector:
Expand Down
8 changes: 8 additions & 0 deletions application/tests/deployment_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,14 @@ tests:
path: metadata.labels["app.kubernetes.io/version"]
value: example-tag

- it: allows setting replicas zero
set:
deployment.replicas: 0
asserts:
- equal:
path: spec.replicas
value: 0

- it: uses image digest when given
set:
deployment.image.repository: example-image
Expand Down

0 comments on commit 9b82e9b

Please sign in to comment.