This is the source repository for OpenShift 3, based on top of Docker containers and the Kubernetes container cluster manager. OpenShift adds developer and operational centric tools top of Kubernetes to enable rapid application development, easy deployment and scaling, and long-term lifecycle maintenance for small and large teams and applications.
Features:
- Push source code to the platform and have deployments automatically occur
- Easy to use client tools for building web applications from source code
- Templatize the components of your system, reuse them, and iteratively deploy them over time
- Centralized administration and management of application component libraries
- Roll out changes to software stacks to your entire organization in a controlled fashion
- Team and user isolation of containers, builds, and network communication in an easy multi-tenancy system
- Limit, track, and manage the resources teams are using
Learn More:
- Technical Architecture Presentation
- System Architecture design document
- The Trello Roadmap covers the epics and stories being worked on (click through to individual items)
- Public Documentation site
For questions or feedback, reach us on IRC on #openshift-dev on Freenode or post to our mailing list.
NOTE: OpenShift is in alpha and is not yet intended for production use. However we welcome feedback, suggestions, and testing as we approach our first beta.
OpenShift is a system which runs Docker containers on your machine. In some cases (build operations and the registry service) it does so using privileged containers. Those containers access your host's Docker daemon and perform docker build
and docker push
operations. As such, you should be aware of the inherent security risks associated with performing docker run
operations on arbitrary images as they have effective root access. This is particularly relevant when running the OpenShift as a node directly on your laptop or primary workstation. Only run code you trust.
For more information on the security of containers, see these articles:
- http://opensource.com/business/14/7/docker-security-selinux
- https://docs.docker.com/articles/security/
Running untrusted containers will become less scary as improvements are made upstream to Docker and Kubernetes, but until then please be conscious of the images you run. Consider using images from trusted parties, building them yourself on OpenShift, or only running containers that run as non-root users.
The simplest way to run OpenShift Origin is in a Docker container:
$ docker run -d --name "openshift-origin" --net=host --privileged \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /tmp/openshift:/tmp/openshift \
openshift/origin start
(you'll need to create the /tmp/openshift directory the first time).
Once the container is started, you can jump into a console inside the container and run the CLI.
$ docker exec -it openshift-origin bash
$ ln -s /var/lib/openshift/openshift.local.certificates/admin/.kubernetes_auth $HOME/.kubernetes_auth
$ osc --help
You can develop locally on your host or with a virtual machine, or if you want to just try out OpenShift download the latest Linux server, or Windows and Mac OS X client pre-built binaries.
First, get up and running with the Contributing Guide.
Once setup with a Go development environment and Docker, you can:
-
Build the source code
$ make clean build
-
Start the OpenShift server
$ make run
-
In another terminal window, switch to the directory and start an app:
$ cd $GOPATH/src/github.com/openshift/origin $ _output/local/go/bin/osc create -f examples/hello-openshift/hello-pod.json
In your browser, go to http://localhost:6061 and you should see 'Welcome to OpenShift'.
The example above starts the 'openshift/hello-openshift' Docker image inside a Docker container, but managed by OpenShift and Kubernetes.
- At the Docker level, that image listens on port 8080 within a container and prints out a simple 'Hello OpenShift' message on access.
- At the Kubernetes level, we map that bound port in the container to port 6061 on the host so that we can access it via the host browser.
- When you created the container, Kubernetes decided which host to place the container on by looking at the available hosts and selecting one with available space. The agent that runs on each node (part of the OpenShift all-in-one binary, called the Kubelet) saw that it was now supposed to run the container and instructed Docker to start the container.
OpenShift brings all of these pieces (and the client) together in a single, easy to use binary. The following examples show the other OpenShift specific features that live above the Kubernetes runtime like image building and deployment flows.
We highly recommend trying out the OpenShift walkthrough, which shows some of the lower level pieces of of OpenShift that will be the foundation for user applications. The walkthrough is accompanied by a blog series on blog.openshift.com that goes into more detail. It's a great place to start, albeit at a lower level than OpenShift 2.
Both OpenShift and Kubernetes have a strong focus on documentation - see the following for more information about them:
You can see some other examples of using Kubernetes at a lower level - stay tuned for more high level OpenShift examples as well:
If you run into difficulties running OpenShift, start by reading through the troubleshooting guide.
The OpenShift APIs are exposed at https://localhost:8443/osapi/v1beta1/*
.
- Builds
https://localhost:8443/osapi/v1beta1/builds
https://localhost:8443/osapi/v1beta1/buildConfigs
https://localhost:8443/osapi/v1beta1/buildLogs
https://localhost:8443/osapi/v1beta1/buildConfigHooks
- Deployments
https://localhost:8443/osapi/v1beta1/deployments
https://localhost:8443/osapi/v1beta1/deploymentConfigs
- Images
https://localhost:8443/osapi/v1beta1/images
https://localhost:8443/osapi/v1beta1/imageRepositories
https://localhost:8443/osapi/v1beta1/imageRepositoryMappings
- Templates
https://localhost:8443/osapi/v1beta1/templateConfigs
- Routes
https://localhost:8443/osapi/v1beta1/routes
- Projects
https://localhost:8443/osapi/v1beta1/projects
- Users
https://localhost:8443/osapi/v1beta1/users
https://localhost:8443/osapi/v1beta1/userIdentityMappings
- OAuth
https://localhost:8443/osapi/v1beta1/accessTokens
https://localhost:8443/osapi/v1beta1/authorizeTokens
https://localhost:8443/osapi/v1beta1/clients
https://localhost:8443/osapi/v1beta1/clientAuthorizations
The Kubernetes APIs are exposed at https://localhost:8443/api/v1beta1/*
:
https://localhost:8443/api/v1beta1/pods
https://localhost:8443/api/v1beta1/services
https://localhost:8443/api/v1beta1/replicationControllers
https://localhost:8443/api/v1beta1/operations
OpenShift and Kubernetes integrate with the Swagger 2.0 API framework which aims to make it easier to document and write clients for RESTful APIs. When you start OpenShift, the Swagger API endpoint is exposed at https://localhost:8443/swaggerapi
. The Swagger UI makes it easy to view your documentation - to view the docs for your local version of OpenShift start the server with CORS enabled:
$ openshift start --cors-allowed-origins=.*
and then browse to http://openshift3swagger-claytondev.rhcloud.com (which runs a copy of the Swagger UI that points to localhost:8080 by default). Expand the operations available on v1beta1 to see the schemas (and to try the API directly).
-
How does OpenShift relate to Kubernetes?
OpenShift embeds Kubernetes and adds additional functionality to offer a simple, powerful, and easy-to-approach developer and operator experience for building applications in containers. Kubernetes today is focused around composing containerized applications - OpenShift adds building images, managing them, and integrating them into deployment flows. Our goal is to do most of that work upstream, with integration and final packaging occurring in OpenShift. As we iterate through the next few months, you'll see this repository focus more on integration and plugins, with more and more features becoming part of Kubernetes.
-
What about geard?
Geard started as a prototype vehicle for the next generation of the OpenShift node - as an orchestration endpoint, to offer integration with systemd, and to prototype network abstraction, routing, SSH access to containers, and Git hosting. Its intended goal is to provide a simple way of reliably managing containers at scale, and to offer administrators tools for easily composing those applications (gear deploy).
With the introduction of Kubernetes, the Kubelet, and the pull model it leverages from etcd, we believe we can implement the pull-orchestration model described in orchestrating geard, especially now that we have a path to properly limit host compromises from affecting the cluster.
The pull-model has many advantages for end clients, not least of which that they are guaranteed to eventually converge to the correct state of the server. We expect that the use cases the geard endpoint offered will be merged into the Kubelet for consumption by admins.systemd and Docker integration offers efficient and clean process management and secure logging aggregation with the system. We plan on introducing those capabilities into Kubernetes over time, especially as we work with the Docker upstream to limit the impact of the Docker daemon's parent child process relationship with containers, where death of the Docker daemon terminates the containers under it
Network links and their ability to simplify how software connects to other containers is planned for Docker links v2 and is a capability we believe will be important in Kubernetes as well (see issue 494 for more details).
The geard deployment descriptor describes containers and their relationships and will be mapped to deployment on top of Kubernetes. The geard commandline itself will likely be merged directly into the
openshift
command for all-in-one management of a cluster.
All contributions are welcome - OpenShift uses the Apache 2 license and does not require any contributor agreement to submit patches. Please open issues for any bugs or problems you encounter, ask questions on the OpenShift IRC channel (#openshift-dev on freenode), or get involved in the Kubernetes project at the container runtime layer.
See HACKING.md for more details on developing on OpenShift including how different tests are setup.
If you want to run the test suite, make sure you have your environment from above set up, and from the origin directory run:
# run the unit tests
$ make check
# run a simple server integration test
$ hack/test-cmd.sh
# run the integration server test suite
$ hack/test-integration.sh
# run the end-to-end test suite
$ hack/test-end-to-end.sh
# run all of the tests above
$ make test
You'll need etcd installed and on your path for the integration and end-to-end tests to run, and Docker must be installed to run the end-to-end tests. To install etcd you should be able to run:
$ hack/install-etcd.sh
Some of the components of OpenShift run as Docker images, including the builders and deployment tools in images/builder/docker/*
and 'images/deploy/*`. To build them locally run
$ hack/build-images.sh
OpenShift is licensed under the Apache License, Version 2.0.