Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kubenow/KubeNow
Deploy Kubernetes. Now!
https://github.com/kubenow/KubeNow
aws gce helm kubeadm kubernetes-cluster openstack terraform
Last synced: 7 days ago
JSON representation
Deploy Kubernetes. Now!
- Host: GitHub
- URL: https://github.com/kubenow/KubeNow
- Owner: kubenow
- License: apache-2.0
- Created: 2016-09-30T16:05:28.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-05-02T10:33:39.000Z (over 4 years ago)
- Last Synced: 2024-05-28T11:10:58.193Z (5 months ago)
- Topics: aws, gce, helm, kubeadm, kubernetes-cluster, openstack, terraform
- Language: HCL
- Homepage:
- Size: 2.74 MB
- Stars: 291
- Watchers: 15
- Forks: 40
- Open Issues: 36
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-kubernetes - KubeNow - KubeNow is a cloud agnostic platform for microservices, based on Docker and Kubernetes. Other than lighting-fast Kubernetes operations, KubeNow helps you in lifting your final application configuring DNS records and distributed storage. (Tools)
README
![architecture](img/logo_wide_50dpi.png)
[![Build Status](https://travis-ci.org/kubenow/KubeNow.svg?branch=master)](https://travis-ci.org/kubenow/KubeNow)
[![Documentation Status](https://readthedocs.org/projects/kubenow/badge/?version=master)](http://kubenow.readthedocs.io)
KubeNow is a cloud agnostic platform for microservices, based on Docker and Kubernetes. Other than lighting-fast Kubernetes operations, KubeNow helps you in lifting your final application configuring DNS records and distributed storage. Once you have defined your application as a Helm package, lifting it is as simple as:
```bash
kn init my-awesome-deployemt
cd my-awesome-deployemt
kn apply
kn helm install my-app-package
```## Table of Contents
- [Architecture](#architecture)
- [Manifesto](#manifesto)
- [Getting Started](#getting-started)
- [Donate](#donate)
- [Roadmap](#roadmap)## Architecture
Deploying a KubeNow cluster you will get:- A Kubernetes cluster up and running in ~10 minutes (provisioned with [kubeadm](http://kubernetes.io/docs/getting-started-guides/kubeadm/))
- [Flannel](https://github.com/coreos/flannel) networking
- [Traefik](https://traefik.io/) HTTP reverse proxy and load balancer
- [Cloudflare](https://www.cloudflare.com/) dynamic DNS configuration
- [GlusterFS](https://www.gluster.org/) distributed file system![architecture](img/architecture.png)
In a KubeNow cluster there are 3 instance types:
- **Master**: it runs the Kubernetes master, and it optionally acts as an ingress controller proxying from the Internet to the application services through its public IP.
- **Service**: it runs a Kubernetes node and it hosts application services.
- **Edge**: it is a specialized service node with a public IP associated, it acts as an ingress controller proxying from the Internet to the application services. It can run application services as well. Edge nodes are optional.
- **Storage**: it is a specialized service node that runs only a GlusterFS server. One or more *glusternodes* can be used to provide distributed storage for the application services. Glusternodes are optional.**Cloudflare** can be optionally used to setup DNS records and SSL/TSL (HTTPS) encryption.
## Manifesto
- We want fast deployments: each instance provision itself independently and immutable images are used
- We use existing provisioning tools: [Terraform](https://www.terraform.io/), [Packer](https://www.packer.io/), [Ansible](https://www.ansible.com/) and [kubeadm](http://kubernetes.io/docs/getting-started-guides/kubeadm)
- We avoid resources that are available only for a specific cloud provider
- We provision IaaS, PaaS and SaaS: lifting a distributed application should be possible with a few commands## Getting started
Want to try KubeNow? The documentation is available at http://kubenow.readthedocs.io.## Donate
You can support KubeNow throug [Patreon](https://patreon.com/kubenow), more information available at https://patreon.com/kubenow.## Roadmap
### Core
- [x] Kubernetes
- [ ] High Availability
- [x] Scaling
- [ ] Autoscaling
- [ ] Dashboard### Cloud Providers
- [x] OpenStack
- [x] Google Cloud Platform
- [x] Amazon Web Services
- [x] Microsoft Azure
- [ ] Local
- [ ] Bare Metal### Load balancer
- [x] Traefik### Networking
- [x] Flannel### Big Data Frameworks
- [ ] Spark### Storage
- [x] GlusterFS### SSL/TSL (HTTPS)
- [x] Cloudflare
- [ ] Let's Encrypt