Merge pull request #20788 from nikitakalyanov/tinyfix-helloworld-1

Remove reference to deprecated image
pull/20840/head
Kubernetes Prow Robot 2020-05-08 01:59:42 -07:00 committed by GitHub
commit 21d910d5a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 24 deletions

View File

@ -7,7 +7,7 @@ menu:
title: "Get Started"
weight: 10
post: >
<p>Ready to get your hands dirty? Build a simple Kubernetes cluster that runs "Hello World" for Node.js.</p>
<p>Ready to get your hands dirty? Build a simple Kubernetes cluster that runs a sample app.</p>
card:
name: tutorials
weight: 10
@ -15,7 +15,7 @@ card:
{{% capture overview %}}
This tutorial shows you how to run a simple Hello World Node.js app
This tutorial shows you how to run a sample app
on Kubernetes using [Minikube](/docs/setup/learning-environment/minikube) and Katacoda.
Katacoda provides a free, in-browser Kubernetes environment.
@ -27,7 +27,7 @@ You can also follow this tutorial if you've installed [Minikube locally](/docs/t
{{% capture objectives %}}
* Deploy a hello world application to Minikube.
* Deploy a sample application to Minikube.
* Run the app.
* View application logs.
@ -35,13 +35,7 @@ You can also follow this tutorial if you've installed [Minikube locally](/docs/t
{{% capture prerequisites %}}
This tutorial provides a container image built from the following files:
{{< codenew language="js" file="minikube/server.js" >}}
{{< codenew language="conf" file="minikube/Dockerfile" >}}
For more information on the `docker build` command, read the [Docker documentation](https://docs.docker.com/engine/reference/commandline/build/).
This tutorial provides a container image that uses NGINX to echo back all the requests.
{{% /capture %}}
@ -166,7 +160,7 @@ Kubernetes [*Service*](/docs/concepts/services-networking/service/).
5. Katacoda environment only: Note the 5 digit port number displayed opposite to `8080` in services output. This port number is randomly generated and it can be different for you. Type your number in the port number text box, then click Display Port. Using the example from earlier, you would type `30369`.
This opens up a browser window that serves your app and shows the "Hello World" message.
This opens up a browser window that serves your app and shows the app's response.
## Enable addons

View File

@ -1,4 +0,0 @@
FROM node:6.14.2
EXPOSE 8080
COPY server.js .
CMD [ "node", "server.js" ]

View File

@ -1,9 +0,0 @@
var http = require('http');
var handleRequest = function(request, response) {
console.log('Received request for URL: ' + request.url);
response.writeHead(200);
response.end('Hello World!');
};
var www = http.createServer(handleRequest);
www.listen(8080);