From 5b4d3e400cb10a86dff7acef12860b3e879631d9 Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Fri, 25 Sep 2020 06:04:44 -0400 Subject: [PATCH] apps-v1 Fix API Versions in README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 89618fcc8e..a9db53a399 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ needed. For example, you might use the following in a Kubernetes `Deployment` resource: ```yaml -apiVersion: apps/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: hello-world @@ -165,7 +165,7 @@ export KO_DOCKER_REPO="gcr.io/${PROJECT_ID}" ko resolve -f deployment.yaml # Output -apiVersion: apps/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: hello-world @@ -193,7 +193,7 @@ export KO_DOCKER_REPO="gcr.io/${PROJECT_ID}" ko resolve -P -f deployment.yaml # Output -apiVersion: apps/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: hello-world