Skip to content

Commit

Permalink
apply template (#9964)
Browse files Browse the repository at this point in the history
  • Loading branch information
makocchi-git authored and k8s-ci-robot committed Aug 21, 2018
1 parent cc93648 commit be5ee84
Showing 1 changed file with 17 additions and 9 deletions.
26 changes: 17 additions & 9 deletions content/en/docs/setup/custom-cloud/kops.md
@@ -1,8 +1,9 @@
---
title: Installing Kubernetes on AWS with kops
content_template: templates/concept
---

## Overview
{{% capture overview %}}

This quickstart shows you how to easily install a Kubernetes cluster on AWS.
It uses a tool called [`kops`](https://github.com/kubernetes/kops).
Expand All @@ -19,6 +20,10 @@ kops is an opinionated provisioning system:
If your opinions differ from these you may prefer to build your own cluster using [kubeadm](/docs/admin/kubeadm/) as
a building block. kops builds on the kubeadm work.

{{% /capture %}}

{{% capture body %}}

## Creating a cluster

### (1/5) Install kops
Expand All @@ -33,7 +38,7 @@ Download kops from the [releases page](https://github.com/kubernetes/kops/releas

On macOS:

```
```shell
curl -OL https://github.com/kubernetes/kops/releases/download/1.10.0/kops-darwin-amd64
chmod +x kops-darwin-amd64
mv kops-darwin-amd64 /usr/local/bin/kops
Expand All @@ -43,7 +48,7 @@ brew update && brew install kops

On Linux:

```
```shell
wget https://github.com/kubernetes/kops/releases/download/1.10.0/kops-linux-amd64
chmod +x kops-linux-amd64
mv kops-linux-amd64 /usr/local/bin/kops
Expand Down Expand Up @@ -149,12 +154,6 @@ for production clusters!

See the [list of add-ons](/docs/concepts/cluster-administration/addons/) to explore other add-ons, including tools for logging, monitoring, network policy, visualization & control of your Kubernetes cluster.

## What's next

* Learn more about Kubernetes [concepts](/docs/concepts/) and [`kubectl`](/docs/user-guide/kubectl-overview/).
* Learn about `kops` [advanced usage](https://github.com/kubernetes/kops)
* See the `kops` [docs](https://github.com/kubernetes/kops) section for tutorials, best practices and advanced configuration options.

## Cleanup

* To delete your cluster: `kops delete cluster useast1.dev.example.com --yes`
Expand All @@ -164,3 +163,12 @@ See the [list of add-ons](/docs/concepts/cluster-administration/addons/) to expl
* Slack Channel: [#kops-users](https://kubernetes.slack.com/messages/kops-users/)
* [GitHub Issues](https://github.com/kubernetes/kops/issues)

{{% /capture %}}

{{% capture whatsnext %}}

* Learn more about Kubernetes [concepts](/docs/concepts/) and [`kubectl`](/docs/user-guide/kubectl-overview/).
* Learn about `kops` [advanced usage](https://github.com/kubernetes/kops)
* See the `kops` [docs](https://github.com/kubernetes/kops) section for tutorials, best practices and advanced configuration options.

{{% /capture %}}

0 comments on commit be5ee84

Please sign in to comment.