From e584391ff5fe553db21c9cb9dc6a234c50b7f787 Mon Sep 17 00:00:00 2001 From: Ryan Hartje Date: Wed, 22 Jan 2020 11:58:54 -0600 Subject: [PATCH] Master's README doesn't work with the latest KIND image, kubernetes v1.16, due to api changes. Let's explictly declare kind to run as 1.15 or update the manifests accordingly and then set the version --- kind-config.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kind-config.yaml b/kind-config.yaml index 7e646ed..773b0de 100644 --- a/kind-config.yaml +++ b/kind-config.yaml @@ -2,7 +2,9 @@ kind: Cluster apiVersion: kind.sigs.k8s.io/v1alpha3 nodes: - role: control-plane + image: kindest/node:v1.15.7 - role: worker + image: kindest/node:v1.15.7 extraPortMappings: - containerPort: 5900 hostPort: 5900