Coder Social home page Coder Social logo

hadoop-pod's Introduction

<<<<<<< HEAD Hello, OpenShift!

This example will serve an HTTP response of "Hello OpenShift!".

$ oc create -f examples/hello-openshift/hello-pod.json

$ oc get pod hello-openshift -o yaml |grep podIP
 podIP: 10.1.0.2

$ curl 10.1.0.2:8080
 Hello OpenShift!

The response message can be set by using the RESPONSE environment variable. You will need to edit the pod definition and add an environment variable to the container definition and run the new pod. To do this, edit hello-pod.json and add the following to the container section. Just add the env clause after the image name so you end up with:

    "containers": [
      {
        "name": "hello-openshift",
        "image": "openshift/hello-openshift",
        "env": [
          { "name": "RESPONSE",
            "value": "Hello World!"
          }
        ],
        ...
      }
    ],

After that, if you are running the pod from above, delete it:

$ oc delete pod hello-openshift

Then you can re-create the pod as with the first example, get the new IP address, and then curl will show your new message:

$ curl 10.1.0.2:8080
 Hello World!

To test from external network, you need to create router. Please refer to Running the router

If you need to rebuild the image:

$ go build -tags netgo   # avoid dynamic linking (we want a static binary)
$ mv hello-openshift bin
$ docker build -t docker.io/openshift/hello-openshift .

=======

hadoop-pod

hadoop cluster pod test

8855e2f636b4e75602179a9136d121da8ec68151

hadoop-pod's People

Contributors

gongkunjxl avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.