From 9872d1195fe7bc4de8120db9959300abf142c0f6 Mon Sep 17 00:00:00 2001 From: Rohit Garg Date: Sat, 30 Apr 2022 12:43:32 -0700 Subject: [PATCH] Updating workshop to use correct deployment command The older command would merely create a pod, without a deployment. --- _posts/2018-04-04-kubernetes-workshop.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2018-04-04-kubernetes-workshop.markdown b/_posts/2018-04-04-kubernetes-workshop.markdown index 64a7e0f..3008dd2 100644 --- a/_posts/2018-04-04-kubernetes-workshop.markdown +++ b/_posts/2018-04-04-kubernetes-workshop.markdown @@ -579,7 +579,7 @@ The error that we see is expected: the Kubernetes API requires authentication. * Let's ping `8.8.8.8`, Google's public DNS ```.term1 - kubectl run pingpong --image alpine ping 8.8.8.8 + kubectl create deployment pingpong --image alpine -- ping 8.8.8.8 ``` * OK, what just happened?