Skip to content

Commit 87d6bcc

Browse files
authored
fix: the tolerations block was at the wrong level in the statefulset (#84)
1 parent 43f2f54 commit 87d6bcc

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

charts/plex-media-server/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ type: application
2222
# This is the chart version. This version number should be incremented each time you make changes
2323
# to the chart and its templates, including the app version.
2424
# Versions are expected to follow Semantic Versioning (https://semver.org/)
25-
version: 0.1.0
25+
version: 0.1.1
2626

2727
# This is the version number of the application being deployed. This version number should be
2828
# incremented each time you make changes to the application. Versions are not expected to

charts/plex-media-server/templates/statefulset.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ spec:
1919
labels:
2020
{{- include "pms-chart.labels" . | nindent 8 }}
2121
spec:
22+
tolerations:
23+
{{- toYaml .Values.tolerations | nindent 6 }}
24+
nodeSelector:
25+
{{- toYaml .Values.nodeSelector | nindent 6 }}
26+
affinity:
27+
{{- toYaml .Values.affinity | nindent 6 }}
2228
volumes:
2329
- name: pms-transcode
2430
emptyDir: {}
@@ -154,12 +160,6 @@ spec:
154160
{{- with .Values.extraContainers }}
155161
{{- toYaml . | nindent 6 }}
156162
{{- end }}
157-
nodeSelector:
158-
{{- toYaml .Values.nodeSelector | nindent 4 }}
159-
affinity:
160-
{{- toYaml .Values.affinity | nindent 4 }}
161-
tolerations:
162-
{{- toYaml .Values.tolerations | nindent 4 }}
163163
volumeClaimTemplates:
164164
- metadata:
165165
name: pms-config

0 commit comments

Comments
 (0)