Skip to content

Commit 757ee66

Browse files
committed
fix: fix tolerations config so that it actually works.
1 parent 1401467 commit 757ee66

File tree

8 files changed

+16
-4
lines changed

8 files changed

+16
-4
lines changed

charts/ai-server/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ maintainers:
55
66
name: Elegant Themes
77
name: ai-server
8-
version: 1.2.4
8+
version: 1.2.5

charts/ai-server/templates/ai-server.yml

+3
Original file line numberDiff line numberDiff line change
@@ -123,10 +123,13 @@ spec:
123123
tolerations:
124124
- key: node.kubernetes.io/disk-pressure
125125
operator: Exists
126+
effect: NoSchedule
126127
- key: node.kubernetes.io/memory-pressure
127128
operator: Exists
129+
effect: NoSchedule
128130
- key: node.kubernetes.io/pid-pressure
129131
operator: Exists
132+
effect: NoSchedule
130133
volumes:
131134
- name: wordpress
132135
hostPath:

charts/cloud-server/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ maintainers:
55
66
name: Elegant Themes
77
name: cloud-server
8-
version: 1.0.16
8+
version: 1.0.17

charts/cloud-server/templates/cloud-server.yml

+3
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,13 @@ spec:
142142
tolerations:
143143
- key: node.kubernetes.io/disk-pressure
144144
operator: Exists
145+
effect: NoSchedule
145146
- key: node.kubernetes.io/memory-pressure
146147
operator: Exists
148+
effect: NoSchedule
147149
- key: node.kubernetes.io/pid-pressure
148150
operator: Exists
151+
effect: NoSchedule
149152
volumes:
150153
- name: wordpress
151154
hostPath:

charts/percona-xtradb-cluster-operator/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ type: application
1414

1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
17-
version: 1.12.0
17+
version: 1.12.1
1818

1919
# This is the version number of the application being deployed. This version number should be
2020
# incremented each time you make changes to the application.

charts/percona-xtradb-cluster-operator/templates/03-operator.yml

+3
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,10 @@ spec:
7272
tolerations:
7373
- key: node.kubernetes.io/disk-pressure
7474
operator: Exists
75+
effect: NoSchedule
7576
- key: node.kubernetes.io/memory-pressure
7677
operator: Exists
78+
effect: NoSchedule
7779
- key: node.kubernetes.io/pid-pressure
7880
operator: Exists
81+
effect: NoSchedule

charts/percona-xtradb-cluster/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ type: application
1414

1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
17-
version: 1.12.4
17+
version: 1.12.5
1818

1919
# This is the version number of the application being deployed. This version number should be
2020
# incremented each time you make changes to the application.

charts/percona-xtradb-cluster/templates/cluster.yml

+3
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,13 @@ spec:
8585
tolerations:
8686
- key: node.kubernetes.io/disk-pressure
8787
operator: Exists
88+
effect: NoSchedule
8889
- key: node.kubernetes.io/memory-pressure
8990
operator: Exists
91+
effect: NoSchedule
9092
- key: node.kubernetes.io/pid-pressure
9193
operator: Exists
94+
effect: NoSchedule
9295
haproxy:
9396
enabled: false
9497
size: 3

0 commit comments

Comments
 (0)