# Kubernetes Operations (kops) [![Build Status](https://travis-ci.org/kubernetes/kops.svg?branch=master)](https://travis-ci.org/kubernetes/kops) [![Go Report Card](https://goreportcard.com/badge/k8s.io/kops)](https://goreportcard.com/report/k8s.io/kops) [![GoDoc Widget]][GoDoc] [GoDoc]: https://godoc.org/k8s.io/kops [GoDoc Widget]: https://godoc.org/k8s.io/kops?status.svg The easiest way to get a production grade Kubernetes cluster up and running. ## What is kops? We like to think of it as `kubectl` for clusters. `kops` helps you create, destroy, upgrade and maintain production-grade, highly available, Kubernetes clusters from the command line. AWS (Amazon Web Services) is currently officially supported, with GCE and VMware vSphere in alpha and other platforms planned. ## Can I see it in action?

## Launching a Kubernetes cluster hosted on AWS To replicate the above demo, check out our [tutorial](/docs/aws.md) for launching a Kubernetes cluster hosted on AWS. ## Features * Automates the provisioning of Kubernetes clusters in ([AWS](/docs/aws.md)) * Deploys Highly Available (HA) Kubernetes Masters * Supports upgrading from [kube-up](/docs/upgrade_from_kubeup.md) * Built on a state-sync model for **dry-runs** and automatic **idempotency** * Ability to generate configuration files for AWS [CloudFormation](https://aws.amazon.com/cloudformation/) and Terraform [Terraform configuration](/docs/terraform.md) * Supports custom Kubernetes [add-ons](/docs/addons.md) * Command line [autocompletion](/docs/cli/kops_completion.md) * Manifest Based API [Configuration](/docs/manifests_and_customizing_via_api.md) * Community supported! ## Documentations Documentation is in the `/docs` directory, [and the index is here.](docs/README.md) ## Installing `kubectl` is required, see [here](http://kubernetes.io/docs/user-guide/prereqs/). ### OSX From Homebrew (Latest Stable Release) ```console $ brew update && brew install kops ``` The `kops` binary is also available via our [releases](https://github.com/kubernetes/kops/releases/latest). ### Linux Download the [latest release](https://github.com/kubernetes/kops/releases/latest), then: ```console $ chmod +x kops-linux-amd64 # Add execution permissions $ mv kops-linux-amd64 /usr/local/bin/kops # Move the kops to /usr/local/bin ``` ## History See the [releases](https://github.com/kubernetes/kops/releases) for more information on changes between releases. ## Getting involved and contributing! Are you interested in contributing to kops? We, the maintainers and community, would love your suggestions, contributions, and help! We have a quick-start guide on [adding a feature](/docs/development/adding_a_feature.md). Also, the maintainers can be contacted at any time to learn more about how to get involved. In the interest of getting more new folks involved with kops, we are starting to tag issues with `good-starter-issue`. These are typically issues that have smaller scope but are good ways to start to get acquainted with the codebase. We also encourage ALL active community participants to act as if they are maintainers, even if you don't have "official" write permissions. This is a community effort, we are here to serve the Kubernetes community. If you have an active interest and you want to get involved, you have real power! Don't assume that the only people who can get things done around here are the "maintainers". We also would love to add more "official" maintainers, so show us what you can do! What this means: __Issues__ * Help read and triage issues, assist when possible. * Point out issues that are duplicates, out of date, etc. - Even if you don't have tagging permissions, make a note and tag maintainers (`/close`,`/dupe #127`). __Pull Requests__ * Read and review the code. Leave comments, questions, and critiques (`/lgtm` ). * Download, compile, and run the code and make sure the tests pass (make test). - Also verify that the new feature seems sane, follows best architectural patterns, and includes tests. ### Maintainers * [@justinsb](https://github.com/justinsb) * [@chrislovecnm](https://github.com/chrislovecnm) * [@kris-nova](https://github.com/kris-nova) * [@geojaz](https://github.com/geojaz) * [@yissachar](https://github.com/yissachar) ## Office Hours Kops maintainers set aside one hour every other week for **public** office hours. Office hours are hosted on a [zoom video chat](https://zoom.us/my/k8ssigaws) on Fridays at [5 pm UTC/12 noon ET/9 am US Pacific](http://www.worldtimebuddy.com/?pl=1&lid=100,5,8,12), on odd week numbered weeks. We strive to get to know and help developers either working on `kops` or interested in getting to know more about the project. ### Open Office Hours Topics Include but not limited to: - Help and guide to those who attend, who are interested in contributing. - Discuss the current state of the kops project, including releases. - Strategize about how to move `kops` forward. - Collaborate about open and upcoming PRs. - Present demos. This time is focused on developers, although we will never turn a courteous participant away. Please swing by, even if you've never actually installed kops. We encourage you to reach out **beforehand** if you plan on attending. You're welcome to join any session, and please feel free to add an item to the [agenda](https://docs.google.com/document/d/12QkyL0FkNbWPcLFxxRGSPt_tNPBHbmni3YLY-lHny7E/edit) where we track notes from office hours. Office hours are hosted on [Zoom](https://zoom.us/my/k8ssigaws) video conference, held on Fridays at [5 pm UTC/12 noon ET/9 am US Pacific](http://www.worldtimebuddy.com/?pl=1&lid=100,5,8,12) every other odd numbered week. You can check your week number using: ```bash date +%V ``` The maintainers and other community members are generally available on the [kubernetes slack](https://github.com/kubernetes/community/blob/master/communication.md#social-media) in [#kops](https://kubernetes.slack.com/messages/kops/), so come find and chat with us about how kops can be better for you! ## GitHub Issues ### Bugs If you think you have found a bug please follow the instructions below. - Please spend a small amount of time giving due diligence to the issue tracker. Your issue might be a duplicate. - Set `-v 10` command line option and save the log output. Please paste this into your issue. - Note the version of kops you are running (from `kops version`), and the command line options you are using. - Open a [new issue](https://github.com/kubernetes/kops/issues/new). - Remember users might be searching for your issue in the future, so please give it a meaningful title to helps others. - Feel free to reach out to the kops community on [kubernetes slack](https://github.com/kubernetes/community/blob/master/communication.md#social-media). ### Features We also use the issue tracker to track features. If you have an idea for a feature, or think you can help kops become even more awesome follow the steps below. - Open a [new issue](https://github.com/kubernetes/kops/issues/new). - Remember users might be searching for your issue in the future, so please give it a meaningful title to helps others. - Clearly define the use case, using concrete examples. EG: I type `this` and kops does `that`. - Some of our larger features will require some design. If you would like to include a technical design for your feature please include it in the issue. - After the new feature is well understood, and the design agreed upon we can start coding the feature. We would love for you to code it. So please open up a **WIP** *(work in progress)* pull request, and happy coding.