We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b998a2e commit abac127Copy full SHA for abac127
containerengine/hello-world/server.js
@@ -16,8 +16,8 @@
16
// [START all]
17
var http = require('http');
18
var handleRequest = function(request, response) {
19
- response.writeHead(200);
20
- response.end('Hello Kubernetes!');
+ response.writeHead(200);
+ response.end('Hello Kubernetes!');
21
};
22
var www = http.createServer(handleRequest);
23
www.listen(process.env.PORT || 8080);
0 commit comments