From 8bb8637213f7ec83e226266e528cf2320ffb945a Mon Sep 17 00:00:00 2001 From: Jeff Regan Date: Fri, 29 Nov 2019 07:00:23 -0800 Subject: [PATCH] Update replicas.md --- examples/replicas.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/replicas.md b/examples/replicas.md index ed1665c00..a29e8bc42 100644 --- a/examples/replicas.md +++ b/examples/replicas.md @@ -25,7 +25,7 @@ Declare the deployment resource ``` -cat <$DEMO_HOME/pod.yaml +cat <$DEMO_HOME/deployment.yaml apiVersion: apps/v1 kind: Deployment metadata: @@ -62,6 +62,6 @@ Confirm that this replaces replicas for myapp: ``` test 3 = \ - $(kustomize build $DEMO_HOME | grep replicas | awk '{print $2}); \ + $(kustomize build $DEMO_HOME | grep replicas | awk '{print $2}'); \ echo $? ```