This commit is contained in:
Nicholas J. Parks
2017-04-22 22:19:39 -04:00
committed by Nanne Baars
parent 086e674bf4
commit 6206aa84b2
3 changed files with 13 additions and 13 deletions

View File

@ -1,4 +1,4 @@
= GKE - DockerHub
# GKE - DockerHub
This Quickstart shows how to create a Kubernettes Cluster using Google Cloud Platform's [GKE](https://cloud.google.com/container-engine/) and WebGoat Docker [Image](https://hub.docker.com/r/webgoat/webgoat-8.0/).
@ -8,7 +8,7 @@ To be Successfull with this Quickstart
2. You know how to `git clone`
3. You have access to the gcloud SDK
== Create Kubernettes Cluster
## Create Kubernettes Cluster
Using the cloud console the default settings will suffice. Just provide a cluster name that makes sense to you. Otherwise you can use the [Google Cloud Shell](https://cloud.google.com/shell/docs/) and the followihg command:
@ -22,7 +22,7 @@ gcloud container --project "PROJECTNAME" clusters create "owaspbasiccluster" --z
Notice that Google Source is `readonly` and Cloud Platform as `Enabled`
== Set up Kubectl
## Set up Kubectl
Using either Google Cloud Shell or other commandline gcloud SDK environment you need to set-up 'kubectl'
@ -33,7 +33,7 @@ Then you just run:
`gcloud container clusters get-credentials owaspbasiccluster --zone us-central1-b --project PROJECTNAME`
== Deploy WebGoat Deployment
## Deploy WebGoat Deployment
Time to deploy the latest DockerImage for WebGoat
@ -56,7 +56,7 @@ After a few minutes the service endpoint should be ready. You can check the stat
In the output you should see a message like "Created Load..." after a "Creating load..." which means that the public facing loadbalancer (even thou there is just one container running!) is ready.
== Test Deployment
## Test Deployment
From the previous `describe service` command the `LoadBalancer Ingress:` line should have the external IP. The line below should give the port.

View File

@ -1,4 +1,4 @@
= WebGoat on GCP!
# WebGoat on GCP!
This folder contains sub folders for the various ways you could deploy WebGoat on Google Cloud Platform
@ -8,10 +8,10 @@ It is assumed:
3. You can use a Shell Linux/Mac/Google Cloud Shell
== GKE Docker
## GKE Docker
Uses GKE to run the latest DockerHub version of WebGoat8
== AppEngine
## AppEngine
WIP