You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.adoc
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ you to easily scale and manage your microservices in a high-availability setup.
58
58
59
59
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
60
60
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
62
62
Container Registry (GCR). GCR is a private registry that is used to store
63
63
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
64
64
https://cloud.google.com/kubernetes-engine/pricing[GKE pricing^] documentation for more details.
@@ -135,14 +135,14 @@ gcloud init
135
135
Follow the prompt to log in with your Google Cloud Platform account.
136
136
This authorizes Google Cloud SDK to access Google Cloud Platform using your account credentials.
137
137
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.
140
140
141
141
You will need to specify a Project ID for your project.
142
142
Enter a Project ID that is unique within Google Cloud and matches the pattern described in the prompt.
143
143
144
144
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:
146
146
147
147
[role="no_copy"]
148
148
----
@@ -161,7 +161,7 @@ To run this guide, you need to use certain Google Cloud services, such as the
161
161
`Compute Engine API`, `Cloud Build API`, and the `Kubernetes Engine API`.
162
162
163
163
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.
165
165
166
166
The `Cloud Build API` allows you to build container images and push them to a Google Container Registry.
167
167
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
177
177
gcloud services list --available
178
178
```
179
179
180
-
You will see an output similar to the following:
180
+
You see an output similar to the following:
181
181
182
182
[role="no_copy"]
183
183
----
@@ -216,14 +216,14 @@ If resources are created without specifying a region or zone,
216
216
these new resources run in the default location for your project.
217
217
The metadata for your resources are stored at this specified Google Cloud location.
218
218
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:
220
220
221
221
[role=command]
222
222
```
223
223
gcloud compute zones list
224
224
```
225
225
226
-
You will see an output similar to the following:
226
+
You see an output similar to the following:
227
227
228
228
[role="no_copy"]
229
229
----
@@ -297,7 +297,7 @@ To get the Project ID for your project, run the `gcloud config get-value project
0 commit comments