Skip to content

Commit

Permalink
fix: Add missing affinity section to charts
Browse files Browse the repository at this point in the history
Signed-off-by: Sasikanth Lanka <[email protected]>
  • Loading branch information
sasikanthlanka committed Feb 7, 2024
1 parent a622fa0 commit 3f7be17
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions charts/opensearch-cluster/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: opensearch-cluster
description: A Helm chart for OpenSearch Cluster
type: application
version: 2.5.1
appVersion: 2.5.1
version: 2.5.2
appVersion: 2.5.2
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,10 @@ spec:
nodeSelector:
{{- toYaml $val.nodeSelector | nindent 8 }}
{{- end }}
{{- if $val.affinity }}
affinity:
{{- toYaml $val.affinity | nindent 8 }}
{{- end }}
{{- if $val.labels }}
labels: # Add any extra labels as key-value pairs here
{{ toYaml $val.labels | nindent 8 }}
Expand Down Expand Up @@ -309,4 +313,4 @@ spec:
{{- end }}
{{- end }}
{{- end }}
{{- end }}
{{- end }}
4 changes: 2 additions & 2 deletions charts/opensearch-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ 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.5.1
version: 2.5.2

# 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
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 2.5.1
appVersion: 2.5.2

0 comments on commit 3f7be17

Please sign in to comment.