From f3622d98fe988fa7b99fa627f4a59277235f41d4 Mon Sep 17 00:00:00 2001 From: Bret Fisher Date: Fri, 13 Sep 2019 16:49:47 -0400 Subject: [PATCH] fixing uppercase K in yaml for static pods --- k8s/just-a-pod.yaml | 2 +- slides/k8s/staticpods.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/k8s/just-a-pod.yaml b/k8s/just-a-pod.yaml index 346525de..a6d1ff4f 100644 --- a/k8s/just-a-pod.yaml +++ b/k8s/just-a-pod.yaml @@ -1,5 +1,5 @@ apiVersion: v1 -Kind: Pod +kind: Pod metadata: name: hello namespace: default diff --git a/slides/k8s/staticpods.md b/slides/k8s/staticpods.md index 31ad23ea..63974122 100644 --- a/slides/k8s/staticpods.md +++ b/slides/k8s/staticpods.md @@ -224,7 +224,7 @@ In the manifest, the pod was named `hello`. ```yaml apiVersion: v1 -Kind: Pod +kind: Pod metadata: name: hello namespace: default