Skip to content

Commit

Permalink
fix: fix tolerations config so that it actually works.
Browse files Browse the repository at this point in the history
  • Loading branch information
lots0logs committed Feb 26, 2024
1 parent 1401467 commit 757ee66
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/ai-server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ maintainers:
- email: [email protected]
name: Elegant Themes
name: ai-server
version: 1.2.4
version: 1.2.5
3 changes: 3 additions & 0 deletions charts/ai-server/templates/ai-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,13 @@ spec:
tolerations:
- key: node.kubernetes.io/disk-pressure
operator: Exists
effect: NoSchedule
- key: node.kubernetes.io/memory-pressure
operator: Exists
effect: NoSchedule
- key: node.kubernetes.io/pid-pressure
operator: Exists
effect: NoSchedule
volumes:
- name: wordpress
hostPath:
Expand Down
2 changes: 1 addition & 1 deletion charts/cloud-server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ maintainers:
- email: [email protected]
name: Elegant Themes
name: cloud-server
version: 1.0.16
version: 1.0.17
3 changes: 3 additions & 0 deletions charts/cloud-server/templates/cloud-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,13 @@ spec:
tolerations:
- key: node.kubernetes.io/disk-pressure
operator: Exists
effect: NoSchedule
- key: node.kubernetes.io/memory-pressure
operator: Exists
effect: NoSchedule
- key: node.kubernetes.io/pid-pressure
operator: Exists
effect: NoSchedule
volumes:
- name: wordpress
hostPath:
Expand Down
2 changes: 1 addition & 1 deletion charts/percona-xtradb-cluster-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,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.
version: 1.12.0
version: 1.12.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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,10 @@ spec:
tolerations:
- key: node.kubernetes.io/disk-pressure
operator: Exists
effect: NoSchedule
- key: node.kubernetes.io/memory-pressure
operator: Exists
effect: NoSchedule
- key: node.kubernetes.io/pid-pressure
operator: Exists
effect: NoSchedule
2 changes: 1 addition & 1 deletion charts/percona-xtradb-cluster/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,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.
version: 1.12.4
version: 1.12.5

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
Expand Down
3 changes: 3 additions & 0 deletions charts/percona-xtradb-cluster/templates/cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,13 @@ spec:
tolerations:
- key: node.kubernetes.io/disk-pressure
operator: Exists
effect: NoSchedule
- key: node.kubernetes.io/memory-pressure
operator: Exists
effect: NoSchedule
- key: node.kubernetes.io/pid-pressure
operator: Exists
effect: NoSchedule
haproxy:
enabled: false
size: 3
Expand Down

0 comments on commit 757ee66

Please sign in to comment.