Commit 32e163c9 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #39715 from tanshanshan/scheduler-example

Automatic merge from submit-queue PodFitsPorts has been replaced by PodFitsHostPorts **What this PR does / why we need it**: in [defaults.go](https://github.com/kubernetes/kubernetes/blob/master/plugin/pkg/scheduler/algorithmprovider/defaults/defaults.go) > PodFitsPorts has been replaced by PodFitsHostPorts for better user understanding. For backwards compatibility with 1.0, PodFitsPorts is registered as well. So , I replaced PodFitsPorts with PodFitsHostPorts in scheduler examples **Special notes for your reviewer**: **Release note**: ```release-note ```
parents 0ca72d11 a61b5f24
......@@ -2,7 +2,7 @@
"kind" : "Policy",
"apiVersion" : "v1",
"predicates" : [
{"name" : "PodFitsPorts"},
{"name" : "PodFitsHostPorts"},
{"name" : "PodFitsResources"},
{"name" : "NoDiskConflict"},
{"name" : "MatchNodeSelector"},
......
......@@ -2,7 +2,7 @@
"kind" : "Policy",
"apiVersion" : "v1",
"predicates" : [
{"name" : "PodFitsPorts"},
{"name" : "PodFitsHostPorts"},
{"name" : "PodFitsResources"},
{"name" : "NoDiskConflict"},
{"name" : "NoVolumeZoneConflict"},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment