From a19af32f811c6b4276244a85e3c38a69fc409c92 Mon Sep 17 00:00:00 2001 From: Kevin Casey <12061237+kevinjamescasey@users.noreply.github.com> Date: Wed, 2 Oct 2024 21:52:37 -0500 Subject: [PATCH 1/6] Update deploy-intro.html Add note to alert people that the command might not work on their machine depending on the CPU architecture --- .../tutorials/kubernetes-basics/deploy-app/deploy-intro.html | 1 + 1 file changed, 1 insertion(+) diff --git a/content/en/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html b/content/en/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html index 3411ce8f54d0c..364e45b0cf299 100644 --- a/content/en/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html +++ b/content/en/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html @@ -121,6 +121,7 @@

kubectl basics

Deploy an app

Let’s deploy our first app on Kubernetes with the kubectl create deployment command. We need to provide the deployment name and app image location (include the full repository url for images hosted outside Docker Hub).

+

kubectl create deployment kubernetes-bootcamp --image=gcr.io/google-samples/kubernetes-bootcamp:v1

Great! You just deployed your first application by creating a deployment. This performed a few things for you: