Skip to content

Commit

Permalink
fix(charts): align replicas value (#382)
Browse files Browse the repository at this point in the history
Rendering this chart without this fix results
in an empty field for replicas.

Signed-off-by: Bailey Hayes <behayes2@gmail.com>
  • Loading branch information
ricochet authored Aug 12, 2024
1 parent 2d6327b commit 5def02c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/wadm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: "0.2.3"
version: "0.2.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
Expand Down
2 changes: 1 addition & 1 deletion charts/wadm/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
labels:
{{- include "wadm.labels" . | nindent 4 }}
spec:
replicas: {{ .Values.replicaCount }}
replicas: {{ .Values.replicas }}
selector:
matchLabels:
{{- include "wadm.selectorLabels" . | nindent 6 }}
Expand Down

0 comments on commit 5def02c

Please sign in to comment.