diff --git a/_includes/head-header.html b/_includes/head-header.html index 8c12920cf9..f362891733 100644 --- a/_includes/head-header.html +++ b/_includes/head-header.html @@ -24,19 +24,19 @@
diff --git a/docs/getting-started-guides/binary_release.md b/docs/getting-started-guides/binary_release.md index 11eb0bb83c..1df329d620 100644 --- a/docs/getting-started-guides/binary_release.md +++ b/docs/getting-started-guides/binary_release.md @@ -1,7 +1,10 @@ --- --- -You can either build a release from sources or download a pre-built release. If you do not plan on developing Kubernetes itself, we suggest a pre-built release. +You can either build a release from sources or download a pre-built release. If you do not plan on developing Kubernetes itself, we suggest a pre-built release. + +* TOC +{:toc} ### Prebuilt Binary Release @@ -23,5 +26,26 @@ make release For more details on the release process see the [`build/` directory](http://releases.k8s.io/{{page.githubbranch}}/build/) +### Download Kubernetes and automatically set up a default cluster +The bash script at `https://get.k8s.io`, which can be run with `wget` or `curl`, automatically downloads Kubernetes, and provisions a cluster based on your desired cloud provider. +```shell +# wget version +export KUBERNETES_PROVIDER=YOUR_PROVIDER; wget -q -O - https://get.k8s.io | bash + +# curl version +export KUBERNETES_PROVIDER=YOUR_PROVIDER; curl -sS https://get.k8s.io | bash +``` + +Possible values for `YOUR_PROVIDER` include: + +* `gce` - Google Compute Engine [default] +* `gke` - Google Container Engine +* `aws` - Amazon EC2 +* `azure` - Microsoft Azure +* `vagrant` - Vagrant (on local virtual machines) +* `vsphere` - VMWare VSphere +* `rackspace` - Rackspace + +For the complete, up-to-date list of providers supported by this script, see [the `/cluster` folder in the main Kubernetes repo](https://github.com/kubernetes/kubernetes/tree/{{page.githubbranch}}/cluster), where each folder represents a possible value for `YOUR_PROVIDER`. If you don't see your desired provider, try looking at our [getting started guides](/docs/getting-started-guides); there's a good chance we have docs for them. diff --git a/imports.txt b/imports.txt deleted file mode 100644 index 9c28cac7e7..0000000000 --- a/imports.txt +++ /dev/null @@ -1,7 +0,0 @@ -https://raw.githubusercontent.com/kubernetes/kubernetes/release-1.1/cluster/saltbase/salt/fluentd-gcp/fluentd-gcp.yaml,docs/getting-started-guides/fluentd-gcp.yaml -https://raw.githubusercontent.com/kubernetes/kubernetes/release-1.1/examples/blog-logging/counter-pod.yaml,docs/getting-started-guides/counter-pod.yaml -https://raw.githubusercontent.com/kubernetes/kubernetes/release-1.1/examples/blog-logging/counter-pod.yaml,docs/user-guide/counter-pod.yaml -https://raw.githubusercontent.com/kubernetes/kubernetes/gh-pages/_includes/v1.1/extensions-v1beta1-definitions.html,_includes/v1.1/extensions-v1beta1-definitions.html -https://raw.githubusercontent.com/kubernetes/kubernetes/gh-pages/_includes/v1.1/extensions-v1beta1-operations.html,_includes/v1.1/extensions-v1beta1-operations.html -https://raw.githubusercontent.com/kubernetes/kubernetes/gh-pages/_includes/v1.1/v1-definitions.html,_includes/v1.1/v1-definitions.html -https://raw.githubusercontent.com/kubernetes/kubernetes/gh-pages/_includes/v1.1/v1-operations.html,_includes/v1.1/v1-operations.html \ No newline at end of file