From 5ec2fc62a6c3f4e5320afd567816fd67ff04df77 Mon Sep 17 00:00:00 2001 From: John Gardiner Myers Date: Sun, 19 Jan 2020 10:16:35 -0800 Subject: [PATCH] Backport the k8s 1.9 required action release note --- docs/releases/1.15-NOTES.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/releases/1.15-NOTES.md b/docs/releases/1.15-NOTES.md index ef87eff25c17c..00198e87a8f23 100644 --- a/docs/releases/1.15-NOTES.md +++ b/docs/releases/1.15-NOTES.md @@ -22,5 +22,17 @@ apiGroup will now be kops.k8s.io, not kops. If performing strict string comparison you will need to update your expected values. +* Kubernetes 1.9 users will need to enable the PodPriority feature gate. This is required for newer versions of Kops. + + To enable the Pod priority feature, follow these steps: + ``` + kops edit cluster + # Add the following section + spec: + kubelet: + featureGates: + PodPriority: "true" + ``` + # Full change list since 1.14.0 release