You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -703,6 +713,39 @@ In versions of the config before `v1beta3`, without `multiPoint`, the above snip
703
713
-->
704
714
在 `v1beta3` 之前的配置版本中,没有 `multiPoint`,上面的代码片段等同于:
705
715
716
+
<!--
717
+
```yaml
718
+
apiVersion: kubescheduler.config.k8s.io/v1beta2
719
+
kind: KubeSchedulerConfiguration
720
+
profiles:
721
+
- schedulerName: multipoint-scheduler
722
+
plugins:
723
+
724
+
# Disable the default QueueSort plugin
725
+
queueSort:
726
+
enabled:
727
+
- name: 'CustomQueueSort'
728
+
disabled:
729
+
- name: 'DefaultQueueSort'
730
+
731
+
# Enable custom Filter plugins
732
+
filter:
733
+
enabled:
734
+
- name: 'CustomPlugin1'
735
+
- name: 'CustomPlugin2'
736
+
- name: 'DefaultPlugin2'
737
+
disabled:
738
+
- name: 'DefaultPlugin1'
739
+
740
+
# Enable and reorder custom score plugins
741
+
score:
742
+
enabled:
743
+
- name: 'DefaultPlugin2'
744
+
weight: 1
745
+
- name: 'DefaultPlugin1'
746
+
weight: 3
747
+
```
748
+
-->
706
749
```yaml
707
750
apiVersion: kubescheduler.config.k8s.io/v1beta2
708
751
kind: KubeSchedulerConfiguration
@@ -781,7 +824,7 @@ as well as its seamless integration with the existing methods for configuring ex
781
824
* The scheduler plugin `NodeLabel` is deprecated; instead, use the [`NodeAffinity`](/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity) plugin (enabled by default) to achieve similar behavior.
@@ -795,7 +838,7 @@ as well as its seamless integration with the existing methods for configuring ex
795
838
* The scheduler plugin `NodePreferAvoidPods` is deprecated; instead, use [node taints](/docs/concepts/scheduling-eviction/taint-and-toleration/) to achieve similar behavior.
0 commit comments