Skip to content

Commit 505e6ed

Browse files
ahmetbJon Wayne Parrott
authored andcommitted
Container Engine → Kubernetes Engine (GoogleCloudPlatform#150)
Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
1 parent 3cbf9bc commit 505e6ed

29 files changed

+9
-9
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Deploy Bookshelf to Container Engine/Kubernetes
1+
# Deploy Bookshelf to Google Kubernetes Engine
22

3-
This optional tutorial will walk you through how to deploy the Bookshelf sample application to [Google Container Engine](https://cloud.google.com/container-engine/). This tutorial is also applicable to [Kubernetes](http://kubernetes.io/) outside of Container Engine, but may require additional steps for external load balancing.
3+
This optional tutorial will walk you through how to deploy the Bookshelf sample application to [Google Kubernetes Engine](https://cloud.google.com/kubernetes-engine/). This tutorial is also applicable to [Kubernetes](http://kubernetes.io/) outside of Google Kubernetes Engine, but may require additional steps for external load balancing.
44

55
## Pre-requisites
66

@@ -12,7 +12,7 @@ This optional tutorial will walk you through how to deploy the Bookshelf sample
1212

1313
4. Install the [Google Cloud SDK](https://cloud.google.com/sdk)
1414

15-
$ curl https://sdk.cloud.google.com | bash
15+
$ curl https://sdk.cloud.google.com | bash
1616
$ gcloud init
1717

1818
5. Install [Docker](https://www.docker.com/).
@@ -49,7 +49,7 @@ Modify config.py and enter your Cloud Project ID into the `PROJECT_ID` and `CLOU
4949

5050
## Build the bookshelf container
5151

52-
Before the application can be deployed to Container Engine, you will need build and push the image to [Google Container Registry](https://cloud.google.com/container-registry/).
52+
Before the application can be deployed to Kubernetes Engine, you will need build and push the image to [Google Container Registry](https://cloud.google.com/container-registry/).
5353

5454
docker build -t gcr.io/<your-project-id>/bookshelf .
5555
gcloud docker push gcr.io/<your-project-id>/bookshelf

optional-container-engine/bookshelf-frontend.yaml renamed to optional-kubernetes-engine/bookshelf-frontend.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ metadata:
2424
# The bookshelf frontend replica set ensures that at least 3
2525
# instances of the bookshelf app are running on the cluster.
2626
# For more info about Pods see:
27-
# https://cloud.google.com/container-engine/docs/pods/
27+
# https://cloud.google.com/kubernetes-engine/docs/pods/
2828
spec:
2929
replicas: 3
3030
template:

optional-container-engine/bookshelf-service.yaml renamed to optional-kubernetes-engine/bookshelf-service.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
# limitations under the License
1414

1515
# The bookshelf service provides a load-balancing proxy over the bookshelf
16-
# frontend pods. By specifying the type as a 'LoadBalancer', Container Engine
16+
# frontend pods. By specifying the type as a 'LoadBalancer', Kubernetes Engine
1717
# will create an external HTTP load balancer.
1818
# For more information about Services see:
19-
# https://cloud.google.com/container-engine/docs/services/
19+
# https://cloud.google.com/kubernetes-engine/docs/services/
2020
# For more information about external HTTP load balancing see:
21-
# https://cloud.google.com/container-engine/docs/load-balancer
21+
# https://cloud.google.com/kubernetes-engine/docs/load-balancer
2222
apiVersion: v1
2323
kind: Service
2424
metadata:

optional-container-engine/bookshelf-worker.yaml renamed to optional-kubernetes-engine/bookshelf-worker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ metadata:
2424
# The bookshelf worker replica set ensures that at least 2 instances of the
2525
# bookshelf worker pod are running on the cluster.
2626
# For more info about Pods see:
27-
# https://cloud.google.com/container-engine/docs/pods/
27+
# https://cloud.google.com/kubernetes-engine/docs/pods/
2828
spec:
2929
replicas: 2
3030
template:
File renamed without changes.
File renamed without changes.

optional-container-engine/bookshelf/model_cloudsql.py renamed to optional-kubernetes-engine/bookshelf/model_cloudsql.py

File renamed without changes.

0 commit comments

Comments
 (0)