fix: the tolerations block was at the wrong level in the statefulset (#84)

This commit is contained in:
Marshall Asch 2023-07-13 09:47:32 -04:00 committed by GitHub
parent 43f2f544e0
commit 87d6bcc100
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View File

@ -22,7 +22,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.1.0
version: 0.1.1
# 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

View File

@ -19,6 +19,12 @@ spec:
labels:
{{- include "pms-chart.labels" . | nindent 8 }}
spec:
tolerations:
{{- toYaml .Values.tolerations | nindent 6 }}
nodeSelector:
{{- toYaml .Values.nodeSelector | nindent 6 }}
affinity:
{{- toYaml .Values.affinity | nindent 6 }}
volumes:
- name: pms-transcode
emptyDir: {}
@ -154,12 +160,6 @@ spec:
{{- with .Values.extraContainers }}
{{- toYaml . | nindent 6 }}
{{- end }}
nodeSelector:
{{- toYaml .Values.nodeSelector | nindent 4 }}
affinity:
{{- toYaml .Values.affinity | nindent 4 }}
tolerations:
{{- toYaml .Values.tolerations | nindent 4 }}
volumeClaimTemplates:
- metadata:
name: pms-config