Skip to content

Commit 60d9770

Browse files
committed
revert changes
1 parent 06d549e commit 60d9770

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.adoc

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ you to easily scale and manage your microservices in a high-availability setup.
5858

5959
Google Cloud Platform offers a managed {kube} service called Google Kubernetes Engine (GKE). Using GKE simplifies the process of running Kubernetes on Google Cloud Platform without
6060
needing to install or maintain your own Kubernetes control plane. It provides a hosted {kube}
61-
cluster that you can deploy your microservices to. In this guide, you will use GKE with a Google
61+
cluster that you can deploy your microservices to. You will use GKE with a Google
6262
Container Registry (GCR). GCR is a private registry that is used to store
6363
and distribute your container images. Note, since GKE is hosted on Google Cloud Platform, fees may be associated with running this guide. See the official
6464
https://cloud.google.com/kubernetes-engine/pricing[GKE pricing^] documentation for more details.
@@ -135,14 +135,14 @@ gcloud init
135135
Follow the prompt to log in with your Google Cloud Platform account.
136136
This authorizes Google Cloud SDK to access Google Cloud Platform using your account credentials.
137137

138-
If you do not have any projects on your account, you will be automatically prompted to create one.
139-
Otherwise, select the "Create a new project" option.
138+
If you do not have any projects on your account, you will be prompted to create one.
139+
Otherwise, select the option to create a new project.
140140

141141
You will need to specify a Project ID for your project.
142142
Enter a Project ID that is unique within Google Cloud and matches the pattern described in the prompt.
143143

144144

145-
If the Project ID is available to use, you will see the following output:
145+
If the Project ID is available to use, you see the following output:
146146

147147
[role="no_copy"]
148148
----
@@ -161,7 +161,7 @@ To run this guide, you need to use certain Google Cloud services, such as the
161161
`Compute Engine API`, `Cloud Build API`, and the `Kubernetes Engine API`.
162162

163163
You will use the `Compute Engine API` to set the default Compute Engine region and zone where the
164-
resources for your cloud deployments will be hosted.
164+
resources for your cloud deployments will be hosted on.
165165

166166
The `Cloud Build API` allows you to build container images and push them to a Google Container Registry.
167167
Your private container registry manages and stores the container images that you build in later steps.
@@ -177,7 +177,7 @@ To see a list of Google Cloud APIs and services that are available for your proj
177177
gcloud services list --available
178178
```
179179

180-
You will see an output similar to the following:
180+
You see an output similar to the following:
181181

182182
[role="no_copy"]
183183
----
@@ -216,14 +216,14 @@ If resources are created without specifying a region or zone,
216216
these new resources run in the default location for your project.
217217
The metadata for your resources are stored at this specified Google Cloud location.
218218

219-
Run the following command to see the list of available zones and its corresponding regions for your project:
219+
See the list of available zones and its corresponding regions for your project:
220220

221221
[role=command]
222222
```
223223
gcloud compute zones list
224224
```
225225

226-
You will see an output similar to the following:
226+
You see an output similar to the following:
227227

228228
[role="no_copy"]
229229
----
@@ -297,7 +297,7 @@ To get the Project ID for your project, run the `gcloud config get-value project
297297
gcloud builds submit --tag gcr.io/[project-id]/system:1.0-SNAPSHOT
298298
```
299299

300-
If the `system` image builds and pushes successfully, you will see the following output:
300+
If the `system` image builds and pushes successfully, you see the following output:
301301

302302
[role="no_copy"]
303303
----
@@ -317,7 +317,7 @@ Build the `inventory` image and push it to your container registry using Cloud B
317317
gcloud builds submit --tag gcr.io/[project-id]/inventory:1.0-SNAPSHOT
318318
```
319319
320-
You will see the following output:
320+
You see the following output:
321321
322322
[role="no_copy"]
323323
----
@@ -364,7 +364,7 @@ and must start with a letter and end with an alphanumeric character.
364364
gcloud container clusters create [cluster-name] --num-nodes 1
365365
```
366366

367-
When your cluster is successfully created, you will see the following output:
367+
When your cluster is successfully created, you see the following output:
368368

369369
[role="no_copy"]
370370
----
@@ -466,7 +466,7 @@ Run the following command to check the status of your pods:
466466
kubectl get pods
467467
```
468468

469-
If all the pods are healthy and running, you will see an output similar to the following:
469+
If all the pods are healthy and running, you see an output similar to the following:
470470
[role="no_copy"]
471471
----
472472
NAME READY STATUS RESTARTS AGE

0 commit comments

Comments
 (0)