Skip to content
This repository was archived by the owner on Oct 7, 2019. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: DevIntent/hello-node-kubernetes
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0
Choose a base ref
...
head repository: DevIntent/hello-node-kubernetes
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 7 commits
  • 4 files changed
  • 1 contributor

Commits on Apr 16, 2016

  1. Copy the full SHA
    8bc54f3 View commit details
  2. Update step7.md

    Splaktar committed Apr 16, 2016
    Copy the full SHA
    eead0a1 View commit details
  3. Update step5.md

    Splaktar committed Apr 16, 2016
    Copy the full SHA
    c372186 View commit details
  4. Update step7.md

    Splaktar committed Apr 16, 2016
    Copy the full SHA
    0148c6a View commit details
  5. Update step11.md

    Splaktar committed Apr 16, 2016
    Copy the full SHA
    980fc97 View commit details
  6. Update step11.md

    Splaktar committed Apr 16, 2016
    Copy the full SHA
    57dd50d View commit details

Commits on Apr 24, 2016

  1. Update step10.md

    Splaktar committed Apr 24, 2016
    Copy the full SHA
    6aac41a View commit details
Showing with 6 additions and 6 deletions.
  1. +1 −1 step10.md
  2. +2 −2 step11.md
  3. +1 −1 step5.md
  4. +2 −2 step7.md
2 changes: 1 addition & 1 deletion step10.md
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ While logged into the cloud console:

Get the admin password
```sh
$ gcloud container clusters describe hello-world | egrep "password"
$ gcloud container clusters describe hello-node | egrep "password"
password: vUYwC5ATJMWa6goh
```

4 changes: 2 additions & 2 deletions step11.md
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ hello-node-2142604176-x8 10.124.132.1 123.132.123.151 8080/TCP 1h
```
Then we can delete the service, which also deletes your external load balancer:
```sh
kubectl delete services hello-node-2142604176-x8
$ kubectl delete services hello-node-2142604176-x8
service "hello-node-2142604176-x8" deleted
```

@@ -22,7 +22,7 @@ $ kubectl delete rc hello-node
```
Delete your cluster:
```sh
$ gcloud container clusters delete hello-world
$ gcloud container clusters delete hello-node
Waiting for cluster deletion...done.
name: operation-xxxxxxxxxxxxxxxx
operationType: deleteCluster
2 changes: 1 addition & 1 deletion step5.md
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ Ok, you are now ready to create your Container Engine cluster. A cluster consist
Google and a set of worker nodes. The worker nodes are Compute Engine virtual machines. Let’s create a cluster with
two [n1-standard-1](https://cloud.google.com/compute/docs/machine-types) nodes (this will take a few minutes to complete):
```sh
$ gcloud container clusters create hello-world \
$ gcloud container clusters create hello-node \
--num-nodes 2 \
--machine-type n1-standard-1
Creating cluster hello-world...done.
4 changes: 2 additions & 2 deletions step7.md
Original file line number Diff line number Diff line change
@@ -13,10 +13,10 @@ To create the Replication Controller, the following needs to be done:
nano replicationController.json
```

Paste the contents of [this gist](https://gist.github.com/Splaktar/47a76f2dc9e053073e6278bdb5dfec5c) into the file and save.
Paste the contents of [this gist](https://gist.github.com/Splaktar/47a76f2dc9e053073e6278bdb5dfec5c) into the file, replace the `PROJECT_ID`, and save.

```sh
kubectl create -f replicationController.json`
kubectl create -f replicationController.json
replicationcontroller "hello-node" created
```