Skip to content

Commit c26b9ac

Browse files
Update deploy-intro.html
Explain how to ensure `docker` driver is used for non-AMD64 users.
1 parent 34b620e commit c26b9ac

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

content/en/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html

+3-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ <h3>Kubernetes Deployments</h3>
3030
{{< note >}}
3131
<p>This tutorial uses a container that requires the AMD64 architecture. If you are using
3232
minikube on a computer with a different CPU architecture, you could try using minikube with
33-
a driver that can emulate AMD64. For example, the Docker Desktop driver can do this.</p>
33+
a driver that can emulate AMD64. For example, the Docker Desktop driver can do this. You can
34+
make sure Docker Deskstop is running when you issue your first `minikube start` command. If
35+
you already have other Minikube instances you can create a one with `minikube start driver=docker`.</p>
3436
{{< /note >}}
3537

3638
<p>
@@ -121,7 +123,6 @@ <h3>kubectl basics</h3>
121123
<a id="deploy-an-app"></a>
122124
<h3>Deploy an app</h3>
123125
<p>Let’s deploy our first app on Kubernetes with the <code>kubectl create deployment</code> command. We need to provide the deployment name and app image location (include the full repository url for images hosted outside Docker Hub).</p>
124-
{{< note >}}This <code>kubenetes-bootcamp</code> image is built only for the <code>amd64</code> CPU architecture and may not work on your machine.{{< /note >}}
125126
<p><b><code>kubectl create deployment kubernetes-bootcamp --image=gcr.io/google-samples/kubernetes-bootcamp:v1</code></b></p>
126127
<p>Great! You just deployed your first application by creating a deployment. This performed a few things for you:</p>
127128
<ul>

0 commit comments

Comments
 (0)