Skip to content

bellkev/docker-hello-google

Repository files navigation

docker-hello-google

This project demonstrates continuous delivery with CircleCI and Google Compute Engine using Docker and Kubernetes.

##Prerequisites

###A private Docker registry This project assumes that a private Docker registry based on google/docker-registry available on GCE, which is accessible without authentication behind the GCE firewall and through a secure proxy to the public (http basic auth + SSL). (Note that this example project was tested with an unsecured endpoint because of this issue. The registry setup should be easier as both Kubernetes and Docker add authentication options.

###A Kubernetes cluster It is also assumed that a Kubernetes cluster is already setup. See the Kubernetes README for instructions on setting this up.

##Initial app deployment Once all of the prerequisites are satisfied, the initial deployment can be performed as follows:

KUBE_ROOT=<the root of a clone of the Kubernetes repo>
HELLO_ROOT=<the root of this project>

# Create the Kubernetes replicationController
RAILS_SECRET=<secret> CIRCLE_SHA1=latest \
  INTERNAL_REGISTRY_ENDPOINT=<Docker registry endpoint accessible from GCE> \
  envsubst < $HELLO_ROOT/kubernetes/rails-controller.json.template > rails-controller.json
$KUBE_ROOT/cluster/kubecfg.sh -c rails-controller.json create replicationControllers

# Create the Kubernetes service--this will make the app available behind a GCE load balancer
# on port 8000. See https://github.com/GoogleCloudPlatform/kubernetes/issues/596 for a
# details on exposing services on standard ports
$KUBE_ROOT/cluster/kubecfg.sh -c $HELLO_ROOT/kubernetes/rails-service.json create services

See the CircleCI Docker docs for more information about using Docker on CircleCI.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 77.0%
  • Shell 10.3%
  • Perl 5.6%
  • CSS 3.5%
  • JavaScript 2.7%
  • CoffeeScript 0.9%