Permalink
2 comments
on commit
Please
sign in to comment.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
47,501 additions
and 0 deletions.
- +17 −0 .gitignore
- +202 −0 LICENSE
- +128 −0 README.md
- +50 −0 api/doc/controller-schema.json
- +36 −0 api/doc/service-schema.json
- +87 −0 api/doc/task-schema.json
- +30 −0 api/examples/controller-list.json
- +18 −0 api/examples/controller.json
- +19 −0 api/examples/service-list.json
- +7 −0 api/examples/service.json
- +46 −0 api/examples/task-list.json
- +18 −0 api/examples/task.json
- +2,017 −0 api/kubernetes.html
- +200 −0 api/kubernetes.raml
- +94 −0 cmd/apiserver/apiserver.go
- +126 −0 cmd/cloudcfg/cloudcfg.go
- +58 −0 cmd/controller-manager/controller-manager.go
- +87 −0 cmd/integration/integration.go
- +67 −0 cmd/kubelet/kubelet.go
- +64 −0 cmd/proxy/proxy.go
- +18 −0 examples/guestbook/frontend-controller.json
- +222 −0 examples/guestbook/guestbook.md
- +37 −0 examples/guestbook/index.php
- +7 −0 examples/guestbook/redis-master-service.json
- +19 −0 examples/guestbook/redis-master.json
- +18 −0 examples/guestbook/redis-slave-controller.json
- +7 −0 examples/guestbook/redis-slave-service.json
- +10 −0 hooks/commit-msg
- +17 −0 hooks/prepare-commit-msg
- +149 −0 pkg/api/types.go
- +209 −0 pkg/apiserver/api_server.go
- +282 −0 pkg/apiserver/api_server_test.go
- +251 −0 pkg/client/client.go
- +391 −0 pkg/client/client_test.go
- +61 −0 pkg/client/container_info.go
- +54 −0 pkg/client/container_info_test.go
- +254 −0 pkg/cloudcfg/cloudcfg.go
- +308 −0 pkg/cloudcfg/cloudcfg_test.go
- +598 −0 pkg/kubelet/kubelet.go
- +80 −0 pkg/kubelet/kubelet_server.go
- +562 −0 pkg/kubelet/kubelet_test.go
- +320 −0 pkg/proxy/config/config.go
- +240 −0 pkg/proxy/config/config_test.go
- +227 −0 pkg/proxy/config/etcd.go
- +56 −0 pkg/proxy/config/etcd_test.go
- +111 −0 pkg/proxy/config/file.go
- +29 −0 pkg/proxy/loadbalancer.go
- +117 −0 pkg/proxy/proxier.go
- +73 −0 pkg/proxy/proxier_test.go
- +103 −0 pkg/proxy/roundrobbin.go
- +178 −0 pkg/proxy/roundrobbin_test.go
- +68 −0 pkg/registry/controller_registry.go
- +187 −0 pkg/registry/controller_registry_test.go
- +65 −0 pkg/registry/endpoints.go
- +108 −0 pkg/registry/endpoints_test.go
- +392 −0 pkg/registry/etcd_registry.go
- +623 −0 pkg/registry/etcd_registry_test.go
- +86 −0 pkg/registry/fake_etcd_client.go
- +44 −0 pkg/registry/interfaces.go
- +41 −0 pkg/registry/manifest_factory.go
- +133 −0 pkg/registry/manifest_factory_test.go
- +137 −0 pkg/registry/memory_registry.go
- +146 −0 pkg/registry/memory_registry_test.go
- +51 −0 pkg/registry/mock_service_registry.go
- +186 −0 pkg/registry/replication_controller.go
- +311 −0 pkg/registry/replication_controller_test.go
- +115 −0 pkg/registry/scheduler.go
- +110 −0 pkg/registry/scheduler_test.go
- +86 −0 pkg/registry/service_registry.go
- +119 −0 pkg/registry/task_registry.go
- +204 −0 pkg/registry/task_registry_test.go
- +56 −0 pkg/util/fake_handler.go
- +37 −0 pkg/util/stringlist.go
- +41 −0 pkg/util/stringlist_test.go
- +47 −0 pkg/util/util.go
- +83 −0 src/release/config.sh
- +48 −0 src/release/launch-kubernetes-base.sh
- +12 −0 src/release/make-public-gcs-acl.py
- +46 −0 src/release/master-release-install.sh
- +96 −0 src/release/release.sh
- +4 −0 src/saltbase/pillar/mine.sls
- +3 −0 src/saltbase/pillar/top.sls
- +5 −0 src/saltbase/reactor/start.sls
- +163 −0 src/saltbase/salt/_states/container_bridge.py
- +5 −0 src/saltbase/salt/apiserver/default
- +81 −0 src/saltbase/salt/apiserver/init.sls
- +119 −0 src/saltbase/salt/apiserver/initd
- +6 −0 src/saltbase/salt/base.sls
- +2 −0 src/saltbase/salt/controller-manager/default
- +81 −0 src/saltbase/salt/controller-manager/init.sls
- +120 −0 src/saltbase/salt/controller-manager/initd
- +1 −0 src/saltbase/salt/docker/docker-defaults
- +53 −0 src/saltbase/salt/docker/init.sls
- +4 −0 src/saltbase/salt/etcd/etcd.conf
- +63 −0 src/saltbase/salt/etcd/init.sls
- +118 −0 src/saltbase/salt/etcd/initd
- +24 −0 src/saltbase/salt/golang.sls
- +2 −0 src/saltbase/salt/kube-proxy/default
- +79 −0 src/saltbase/salt/kube-proxy/init.sls
- +120 −0 src/saltbase/salt/kube-proxy/initd
- +2 −0 src/saltbase/salt/kubelet/default
- +82 −0 src/saltbase/salt/kubelet/init.sls
- +119 −0 src/saltbase/salt/kubelet/initd
- +52 −0 src/saltbase/salt/nginx/init.sls
- +73 −0 src/saltbase/salt/nginx/kubernetes-site
- +19 −0 src/saltbase/salt/nginx/make-cert.sh
- +56 −0 src/saltbase/salt/nginx/nginx.conf
- +18 −0 src/saltbase/salt/top.sls
- +30 −0 src/scripts/build-go.sh
- +24 −0 src/scripts/cloudcfg.sh
- +27 −0 src/scripts/config-default.sh
- +56 −0 src/scripts/config-go.sh
- +28 −0 src/scripts/config-test.sh
- +23 −0 src/scripts/dev-build-and-push.sh
- +24 −0 src/scripts/dev-build-and-up.sh
- +52 −0 src/scripts/e2e-test.sh
- +34 −0 src/scripts/integration-test.sh
- +41 −0 src/scripts/kube-down.sh
- +57 −0 src/scripts/kube-push.sh
- +140 −0 src/scripts/kube-up.sh
- +40 −0 src/scripts/test-go.sh
- +93 −0 src/scripts/util.sh
- +30 −0 src/templates/download-release.sh
- +52 −0 src/templates/salt-master.sh
- +38 −0 src/templates/salt-minion.sh
- +20 −0 third_party/bitbucket.org/kardianos/osext/LICENSE
- +32 −0 third_party/bitbucket.org/kardianos/osext/osext.go
- +20 −0 third_party/bitbucket.org/kardianos/osext/osext_plan9.go
- +25 −0 third_party/bitbucket.org/kardianos/osext/osext_procfs.go
- +82 −0 third_party/bitbucket.org/kardianos/osext/osext_sysctl.go
- +79 −0 third_party/bitbucket.org/kardianos/osext/osext_test.go
- +34 −0 third_party/bitbucket.org/kardianos/osext/osext_windows.go
- +13 −0 third_party/deps.sh
- +202 −0 third_party/github.com/coreos/go-etcd/LICENSE
- +15 −0 third_party/github.com/coreos/go-etcd/README.md
- +23 −0 third_party/github.com/coreos/go-etcd/etcd/add_child.go
- +73 −0 third_party/github.com/coreos/go-etcd/etcd/add_child_test.go
- +430 −0 third_party/github.com/coreos/go-etcd/etcd/client.go
- +96 −0 third_party/github.com/coreos/go-etcd/etcd/client_test.go
- +51 −0 third_party/github.com/coreos/go-etcd/etcd/cluster.go
- +34 −0 third_party/github.com/coreos/go-etcd/etcd/compare_and_delete.go
- +46 −0 third_party/github.com/coreos/go-etcd/etcd/compare_and_delete_test.go
- +36 −0 third_party/github.com/coreos/go-etcd/etcd/compare_and_swap.go
- +57 −0 third_party/github.com/coreos/go-etcd/etcd/compare_and_swap_test.go
- +54 −0 third_party/github.com/coreos/go-etcd/etcd/debug.go
- +40 −0 third_party/github.com/coreos/go-etcd/etcd/delete.go
- +81 −0 third_party/github.com/coreos/go-etcd/etcd/delete_test.go
- +48 −0 third_party/github.com/coreos/go-etcd/etcd/error.go
- +27 −0 third_party/github.com/coreos/go-etcd/etcd/get.go
- +131 −0 third_party/github.com/coreos/go-etcd/etcd/get_test.go
- +72 −0 third_party/github.com/coreos/go-etcd/etcd/options.go
- +365 −0 third_party/github.com/coreos/go-etcd/etcd/requests.go
- +89 −0 third_party/github.com/coreos/go-etcd/etcd/response.go
- +42 −0 third_party/github.com/coreos/go-etcd/etcd/set_curl_chan_test.go
- +137 −0 third_party/github.com/coreos/go-etcd/etcd/set_update_create.go
- +241 −0 third_party/github.com/coreos/go-etcd/etcd/set_update_create_test.go
- +3 −0 third_party/github.com/coreos/go-etcd/etcd/version.go
- +103 −0 third_party/github.com/coreos/go-etcd/etcd/watch.go
- +119 −0 third_party/github.com/coreos/go-etcd/etcd/watch_test.go
- +191 −0 third_party/github.com/coreos/go-log/LICENSE
- +121 −0 third_party/github.com/coreos/go-log/README.md
- +214 −0 third_party/github.com/coreos/go-log/log/commands.go
- +69 −0 third_party/github.com/coreos/go-log/log/fields.go
- +72 −0 third_party/github.com/coreos/go-log/log/logger.go
- +54 −0 third_party/github.com/coreos/go-log/log/priority.go
- +97 −0 third_party/github.com/coreos/go-log/log/sinks.go
- +82 −0 third_party/github.com/coreos/go-log/log/sinks_unix.go
- +33 −0 third_party/github.com/coreos/go-log/log/sinks_windows.go
- +168 −0 third_party/github.com/coreos/go-systemd/journal/send.go
- +12 −0 third_party/github.com/fsouza/go-dockerclient/.travis.yml
- +29 −0 third_party/github.com/fsouza/go-dockerclient/AUTHORS
- +6 −0 third_party/github.com/fsouza/go-dockerclient/DOCKER-LICENSE
- +22 −0 third_party/github.com/fsouza/go-dockerclient/LICENSE
- +47 −0 third_party/github.com/fsouza/go-dockerclient/README.markdown
- +36 −0 third_party/github.com/fsouza/go-dockerclient/change.go
- +26 −0 third_party/github.com/fsouza/go-dockerclient/change_test.go
- +352 −0 third_party/github.com/fsouza/go-dockerclient/client.go
- +161 −0 third_party/github.com/fsouza/go-dockerclient/client_test.go
- +583 −0 third_party/github.com/fsouza/go-dockerclient/container.go
- +888 −0 third_party/github.com/fsouza/go-dockerclient/container_test.go
- +147 −0 third_party/github.com/fsouza/go-dockerclient/engine/engine.go
- +111 −0 third_party/github.com/fsouza/go-dockerclient/engine/engine_test.go
- +238 −0 third_party/github.com/fsouza/go-dockerclient/engine/env.go
- +127 −0 third_party/github.com/fsouza/go-dockerclient/engine/env_test.go
- +25 −0 third_party/github.com/fsouza/go-dockerclient/engine/hack.go
- +28 −0 third_party/github.com/fsouza/go-dockerclient/engine/helpers_test.go
- +44 −0 third_party/github.com/fsouza/go-dockerclient/engine/http.go
- +197 −0 third_party/github.com/fsouza/go-dockerclient/engine/job.go
- +84 −0 third_party/github.com/fsouza/go-dockerclient/engine/job_test.go
- +196 −0 third_party/github.com/fsouza/go-dockerclient/engine/streams.go
- +298 −0 third_party/github.com/fsouza/go-dockerclient/engine/streams_test.go
- +279 −0 third_party/github.com/fsouza/go-dockerclient/event.go
- +92 −0 third_party/github.com/fsouza/go-dockerclient/event_test.go
- +133 −0 third_party/github.com/fsouza/go-dockerclient/example_test.go
- +265 −0 third_party/github.com/fsouza/go-dockerclient/image.go
- +641 −0 third_party/github.com/fsouza/go-dockerclient/image_test.go
- +46 −0 third_party/github.com/fsouza/go-dockerclient/misc.go
- +122 −0 third_party/github.com/fsouza/go-dockerclient/misc_test.go
- +49 −0 third_party/github.com/fsouza/go-dockerclient/signal.go
- +15 −0 third_party/github.com/fsouza/go-dockerclient/testing/data/Dockerfile
- BIN third_party/github.com/fsouza/go-dockerclient/testing/data/container.tar
- BIN third_party/github.com/fsouza/go-dockerclient/testing/data/dockerfile.tar
- +568 −0 third_party/github.com/fsouza/go-dockerclient/testing/server.go
- +764 −0 third_party/github.com/fsouza/go-dockerclient/testing/server_test.go
- +20 −0 third_party/github.com/fsouza/go-dockerclient/utils/random.go
- +158 −0 third_party/github.com/fsouza/go-dockerclient/utils/stdcopy.go
- +17 −0 third_party/github.com/fsouza/go-dockerclient/utils/uname_darwin.go
- +20 −0 third_party/github.com/fsouza/go-dockerclient/utils/uname_linux.go
- +1,114 −0 third_party/github.com/fsouza/go-dockerclient/utils/utils.go
- +535 −0 third_party/github.com/fsouza/go-dockerclient/utils/utils_test.go
- +17 −0 third_party/github.com/fsouza/go-dockerclient/utils/utils_windows.go
- +185 −0 third_party/gonuts.org/v1/yaml/LICENSE
- +19 −0 third_party/gonuts.org/v1/yaml/LICENSE.libyaml
- +127 −0 third_party/gonuts.org/v1/yaml/README.md
- +742 −0 third_party/gonuts.org/v1/yaml/apic.go
- +538 −0 third_party/gonuts.org/v1/yaml/decode.go
- +648 −0 third_party/gonuts.org/v1/yaml/decode_test.go
- +1,682 −0 third_party/gonuts.org/v1/yaml/emitterc.go
- +226 −0 third_party/gonuts.org/v1/yaml/encode.go
- +386 −0 third_party/gonuts.org/v1/yaml/encode_test.go
- +1,096 −0 third_party/gonuts.org/v1/yaml/parserc.go
- +391 −0 third_party/gonuts.org/v1/yaml/readerc.go
- +148 −0 third_party/gonuts.org/v1/yaml/resolve.go
- +2,710 −0 third_party/gonuts.org/v1/yaml/scannerc.go
- +104 −0 third_party/gonuts.org/v1/yaml/sorter.go
- +12 −0 third_party/gonuts.org/v1/yaml/suite_test.go
- +89 −0 third_party/gonuts.org/v1/yaml/writerc.go
- +306 −0 third_party/gonuts.org/v1/yaml/yaml.go
- +712 −0 third_party/gonuts.org/v1/yaml/yamlh.go
- +173 −0 third_party/gonuts.org/v1/yaml/yamlprivateh.go
- +185 −0 third_party/gopkg.in/v1/yaml/LICENSE
- +19 −0 third_party/gopkg.in/v1/yaml/LICENSE.libyaml
- +127 −0 third_party/gopkg.in/v1/yaml/README.md
- +742 −0 third_party/gopkg.in/v1/yaml/apic.go
- +538 −0 third_party/gopkg.in/v1/yaml/decode.go
- +648 −0 third_party/gopkg.in/v1/yaml/decode_test.go
- +1,682 −0 third_party/gopkg.in/v1/yaml/emitterc.go
- +226 −0 third_party/gopkg.in/v1/yaml/encode.go
- +386 −0 third_party/gopkg.in/v1/yaml/encode_test.go
- +1,096 −0 third_party/gopkg.in/v1/yaml/parserc.go
- +391 −0 third_party/gopkg.in/v1/yaml/readerc.go
- +148 −0 third_party/gopkg.in/v1/yaml/resolve.go
- +2,710 −0 third_party/gopkg.in/v1/yaml/scannerc.go
- +104 −0 third_party/gopkg.in/v1/yaml/sorter.go
- +12 −0 third_party/gopkg.in/v1/yaml/suite_test.go
- +89 −0 third_party/gopkg.in/v1/yaml/writerc.go
- +306 −0 third_party/gopkg.in/v1/yaml/yaml.go
- +712 −0 third_party/gopkg.in/v1/yaml/yamlh.go
- +173 −0 third_party/gopkg.in/v1/yaml/yamlprivateh.go
- +60 −0 third_party/update.sh
@@ -0,0 +1,17 @@ | ||
# OSX leaves these everywhere on SMB shares | ||
._* | ||
|
||
# Eclipse files | ||
.classpath | ||
.project | ||
.settings/** | ||
|
||
# This is where the result of the go build goes | ||
/target/** | ||
/target | ||
|
||
# This is where we stage releases | ||
/release/** | ||
|
||
# Emacs save files | ||
This comment has been minimized.
This comment has been minimized. |
||
*~ |
@@ -0,0 +1,202 @@ | ||
|
||
Apache License | ||
Version 2.0, January 2004 | ||
http://www.apache.org/licenses/ | ||
|
||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION | ||
|
||
1. Definitions. | ||
|
||
"License" shall mean the terms and conditions for use, reproduction, | ||
and distribution as defined by Sections 1 through 9 of this document. | ||
|
||
"Licensor" shall mean the copyright owner or entity authorized by | ||
the copyright owner that is granting the License. | ||
|
||
"Legal Entity" shall mean the union of the acting entity and all | ||
other entities that control, are controlled by, or are under common | ||
control with that entity. For the purposes of this definition, | ||
"control" means (i) the power, direct or indirect, to cause the | ||
direction or management of such entity, whether by contract or | ||
otherwise, or (ii) ownership of fifty percent (50%) or more of the | ||
outstanding shares, or (iii) beneficial ownership of such entity. | ||
|
||
"You" (or "Your") shall mean an individual or Legal Entity | ||
exercising permissions granted by this License. | ||
|
||
"Source" form shall mean the preferred form for making modifications, | ||
including but not limited to software source code, documentation | ||
source, and configuration files. | ||
|
||
"Object" form shall mean any form resulting from mechanical | ||
transformation or translation of a Source form, including but | ||
not limited to compiled object code, generated documentation, | ||
and conversions to other media types. | ||
|
||
"Work" shall mean the work of authorship, whether in Source or | ||
Object form, made available under the License, as indicated by a | ||
copyright notice that is included in or attached to the work | ||
(an example is provided in the Appendix below). | ||
|
||
"Derivative Works" shall mean any work, whether in Source or Object | ||
form, that is based on (or derived from) the Work and for which the | ||
editorial revisions, annotations, elaborations, or other modifications | ||
represent, as a whole, an original work of authorship. For the purposes | ||
of this License, Derivative Works shall not include works that remain | ||
separable from, or merely link (or bind by name) to the interfaces of, | ||
the Work and Derivative Works thereof. | ||
|
||
"Contribution" shall mean any work of authorship, including | ||
the original version of the Work and any modifications or additions | ||
to that Work or Derivative Works thereof, that is intentionally | ||
submitted to Licensor for inclusion in the Work by the copyright owner | ||
or by an individual or Legal Entity authorized to submit on behalf of | ||
the copyright owner. For the purposes of this definition, "submitted" | ||
means any form of electronic, verbal, or written communication sent | ||
to the Licensor or its representatives, including but not limited to | ||
communication on electronic mailing lists, source code control systems, | ||
and issue tracking systems that are managed by, or on behalf of, the | ||
Licensor for the purpose of discussing and improving the Work, but | ||
excluding communication that is conspicuously marked or otherwise | ||
designated in writing by the copyright owner as "Not a Contribution." | ||
|
||
"Contributor" shall mean Licensor and any individual or Legal Entity | ||
on behalf of whom a Contribution has been received by Licensor and | ||
subsequently incorporated within the Work. | ||
|
||
2. Grant of Copyright License. Subject to the terms and conditions of | ||
this License, each Contributor hereby grants to You a perpetual, | ||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable | ||
copyright license to reproduce, prepare Derivative Works of, | ||
publicly display, publicly perform, sublicense, and distribute the | ||
Work and such Derivative Works in Source or Object form. | ||
|
||
3. Grant of Patent License. Subject to the terms and conditions of | ||
this License, each Contributor hereby grants to You a perpetual, | ||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable | ||
(except as stated in this section) patent license to make, have made, | ||
use, offer to sell, sell, import, and otherwise transfer the Work, | ||
where such license applies only to those patent claims licensable | ||
by such Contributor that are necessarily infringed by their | ||
Contribution(s) alone or by combination of their Contribution(s) | ||
with the Work to which such Contribution(s) was submitted. If You | ||
institute patent litigation against any entity (including a | ||
cross-claim or counterclaim in a lawsuit) alleging that the Work | ||
or a Contribution incorporated within the Work constitutes direct | ||
or contributory patent infringement, then any patent licenses | ||
granted to You under this License for that Work shall terminate | ||
as of the date such litigation is filed. | ||
|
||
4. Redistribution. You may reproduce and distribute copies of the | ||
Work or Derivative Works thereof in any medium, with or without | ||
modifications, and in Source or Object form, provided that You | ||
meet the following conditions: | ||
|
||
(a) You must give any other recipients of the Work or | ||
Derivative Works a copy of this License; and | ||
|
||
(b) You must cause any modified files to carry prominent notices | ||
stating that You changed the files; and | ||
|
||
(c) You must retain, in the Source form of any Derivative Works | ||
that You distribute, all copyright, patent, trademark, and | ||
attribution notices from the Source form of the Work, | ||
excluding those notices that do not pertain to any part of | ||
the Derivative Works; and | ||
|
||
(d) If the Work includes a "NOTICE" text file as part of its | ||
distribution, then any Derivative Works that You distribute must | ||
include a readable copy of the attribution notices contained | ||
within such NOTICE file, excluding those notices that do not | ||
pertain to any part of the Derivative Works, in at least one | ||
of the following places: within a NOTICE text file distributed | ||
as part of the Derivative Works; within the Source form or | ||
documentation, if provided along with the Derivative Works; or, | ||
within a display generated by the Derivative Works, if and | ||
wherever such third-party notices normally appear. The contents | ||
of the NOTICE file are for informational purposes only and | ||
do not modify the License. You may add Your own attribution | ||
notices within Derivative Works that You distribute, alongside | ||
or as an addendum to the NOTICE text from the Work, provided | ||
that such additional attribution notices cannot be construed | ||
as modifying the License. | ||
|
||
You may add Your own copyright statement to Your modifications and | ||
may provide additional or different license terms and conditions | ||
for use, reproduction, or distribution of Your modifications, or | ||
for any such Derivative Works as a whole, provided Your use, | ||
reproduction, and distribution of the Work otherwise complies with | ||
the conditions stated in this License. | ||
|
||
5. Submission of Contributions. Unless You explicitly state otherwise, | ||
any Contribution intentionally submitted for inclusion in the Work | ||
by You to the Licensor shall be under the terms and conditions of | ||
this License, without any additional terms or conditions. | ||
Notwithstanding the above, nothing herein shall supersede or modify | ||
the terms of any separate license agreement you may have executed | ||
with Licensor regarding such Contributions. | ||
|
||
6. Trademarks. This License does not grant permission to use the trade | ||
names, trademarks, service marks, or product names of the Licensor, | ||
except as required for reasonable and customary use in describing the | ||
origin of the Work and reproducing the content of the NOTICE file. | ||
|
||
7. Disclaimer of Warranty. Unless required by applicable law or | ||
agreed to in writing, Licensor provides the Work (and each | ||
Contributor provides its Contributions) on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or | ||
implied, including, without limitation, any warranties or conditions | ||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A | ||
PARTICULAR PURPOSE. You are solely responsible for determining the | ||
appropriateness of using or redistributing the Work and assume any | ||
risks associated with Your exercise of permissions under this License. | ||
|
||
8. Limitation of Liability. In no event and under no legal theory, | ||
whether in tort (including negligence), contract, or otherwise, | ||
unless required by applicable law (such as deliberate and grossly | ||
negligent acts) or agreed to in writing, shall any Contributor be | ||
liable to You for damages, including any direct, indirect, special, | ||
incidental, or consequential damages of any character arising as a | ||
result of this License or out of the use or inability to use the | ||
Work (including but not limited to damages for loss of goodwill, | ||
work stoppage, computer failure or malfunction, or any and all | ||
other commercial damages or losses), even if such Contributor | ||
has been advised of the possibility of such damages. | ||
|
||
9. Accepting Warranty or Additional Liability. While redistributing | ||
the Work or Derivative Works thereof, You may choose to offer, | ||
and charge a fee for, acceptance of support, warranty, indemnity, | ||
or other liability obligations and/or rights consistent with this | ||
License. However, in accepting such obligations, You may act only | ||
on Your own behalf and on Your sole responsibility, not on behalf | ||
of any other Contributor, and only if You agree to indemnify, | ||
defend, and hold each Contributor harmless for any liability | ||
incurred by, or claims asserted against, such Contributor by reason | ||
of your accepting any such warranty or additional liability. | ||
|
||
END OF TERMS AND CONDITIONS | ||
|
||
APPENDIX: How to apply the Apache License to your work. | ||
|
||
To apply the Apache License to your work, attach the following | ||
boilerplate notice, with the fields enclosed by brackets "[]" | ||
replaced with your own identifying information. (Don't include | ||
the brackets!) The text should be enclosed in the appropriate | ||
comment syntax for the file format. We also recommend that a | ||
file or class name and description of purpose be included on the | ||
same "printed page" as the copyright notice for easier | ||
identification within third-party archives. | ||
|
||
Copyright [yyyy] [name of copyright owner] | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. |
@@ -0,0 +1,128 @@ | ||
# Kubernetes | ||
|
||
Kubernetes is an open source reference implementation of container cluster management. | ||
|
||
## Getting started on Google Compute Engine | ||
|
||
### Prerequisites | ||
|
||
1. You need a Google Cloud Platform account with billing enabled. Visit http://cloud.google.com/console for more details | ||
2. You must have Go installed: [www.golang.org](http://www.golang.org) | ||
3. Ensure that your `gcloud` components are up-to-date by running `gcloud components update`. | ||
4. Get the Kubernetes source: `git clone https://github.com/GoogleCloudPlatform/kubernetes.git` | ||
|
||
### Setup | ||
``` | ||
cd kubernetes | ||
./src/scripts/dev-build-and-up.sh | ||
``` | ||
|
||
### Running a container (simple version) | ||
``` | ||
cd kubernetes | ||
./src/scripts/build-go.sh | ||
./src/scripts/cloudcfg.sh -p 8080:80 run dockerfile/nginx 2 myNginx | ||
``` | ||
|
||
This will spin up two containers running Nginx mapping port 80 to 8080. | ||
|
||
To stop the container: | ||
``` | ||
./src/scripts/cloudcfg.sh stop myNginx | ||
``` | ||
|
||
To delete the container: | ||
``` | ||
./src/scripts/cloudcfg.sh rm myNginx | ||
``` | ||
|
||
### Running a container (more complete version) | ||
``` | ||
cd kubernetes | ||
./src/scripts/cloudcfg.sh -c examples/task.json create /tasks | ||
``` | ||
|
||
Where task.json contains something like: | ||
``` | ||
{ | ||
"ID": "nginx", | ||
"desiredState": { | ||
"image": "dockerfile/nginx", | ||
"networkPorts": [{ | ||
"containerPort": 80, | ||
"hostPort": 8080 | ||
}] | ||
}, | ||
"labels": { | ||
"name": "foo" | ||
} | ||
} | ||
``` | ||
|
||
Look in the ```examples/``` for more examples | ||
|
||
### Tearing down the cluster | ||
``` | ||
cd kubernetes | ||
./src/scripts/kube-down.sh | ||
``` | ||
|
||
## Development | ||
|
||
### Hooks | ||
``` | ||
# Before committing any changes, please link/copy these hooks into your .git | ||
# directory. This will keep you from accidentally committing non-gofmt'd | ||
# go code. | ||
cd kubernetes | ||
ln -s "../../hooks/prepare-commit-msg" .git/hooks/prepare-commit-msg | ||
ln -s "../../hooks/commit-msg" .git/hooks/commit-msg | ||
``` | ||
|
||
### Unit tests | ||
``` | ||
cd kubernetes | ||
./src/scripts/test-go.sh | ||
``` | ||
|
||
### Coverage | ||
``` | ||
cd kubernetes | ||
go tool cover -html=target/c.out | ||
``` | ||
|
||
### Integration tests | ||
``` | ||
# You need an etcd somewhere in your path. | ||
# To get from head: | ||
go get github.com/coreos/etcd | ||
go install github.com/coreos/etcd | ||
sudo ln -s "$GOPATH/bin/etcd" /usr/bin/etcd | ||
# Or just use the packaged one: | ||
sudo ln -s "$REPO_ROOT/target/bin/etcd" /usr/bin/etcd | ||
``` | ||
|
||
``` | ||
cd kubernetes | ||
./src/scripts/integration-test.sh | ||
``` | ||
|
||
### Keeping your development fork in sync | ||
One time after cloning your forked repo: | ||
``` | ||
git remote add upstream https://github.com/GoogleCloudPlatform/kubernetes.git | ||
``` | ||
|
||
Then each time you want to sync to upstream: | ||
``` | ||
git fetch upstream | ||
git rebase upstream/master | ||
``` | ||
|
||
### Regenerating the documentation | ||
Install [nodejs](http://nodejs.org/download/), [npm](https://www.npmjs.org/), and | ||
[raml2html](https://github.com/kevinrenskers/raml2html), then run: | ||
``` | ||
cd kubernetes/api | ||
raml2html kubernetes.raml > kubernetes.html | ||
``` |
Oops, something went wrong.
2 comments
on commit 2c4b3a5
This comment has been minimized.
This comment has been minimized.
what a legendary first commit |
This comment has been minimized.
This comment has been minimized.
Happy 6th birthday ! |
ydfhgfjhgfjty