All Projects → hasura → Kubeformation

hasura / Kubeformation

Licence: apache-2.0
Create declarative cluster specifications for your managed Kubernetes vendor (GKE, AKS)

Programming Languages

go
31211 projects - #10 most used programming language
declarative
70 projects

Projects that are alternatives of or similar to Kubeformation

Manageiq
ManageIQ Open-Source Management Platform
Stars: ✭ 1,089 (+1166.28%)
Mutual labels:  azure, google-cloud
Typhoon
Minimal and free Kubernetes distribution with Terraform
Stars: ✭ 1,397 (+1524.42%)
Mutual labels:  azure, google-cloud
Bank Vaults
A Vault swiss-army knife: a K8s operator, Go client with automatic token renewal, automatic configuration, multiple unseal options and more. A CLI tool to init, unseal and configure Vault (auth methods, secret engines). Direct secret injection into Pods.
Stars: ✭ 1,316 (+1430.23%)
Mutual labels:  azure, google-cloud
Gocloud
☁️ Go API for open cloud
Stars: ✭ 112 (+30.23%)
Mutual labels:  azure, google-cloud
terraform-cloudinit-container-server
A batteries included cloud-init config to quickly and easily deploy a single Docker image or Docker Compose file to any Cloud™ VM.
Stars: ✭ 52 (-39.53%)
Mutual labels:  azure, google-cloud
Awesome Kubernetes
A curated list for awesome kubernetes sources 🚢🎉
Stars: ✭ 12,306 (+14209.3%)
Mutual labels:  azure, google-cloud
Azure Quickstart Templates
Azure Quickstart Templates
Stars: ✭ 11,138 (+12851.16%)
Mutual labels:  azure, templates
ipranges
🔨 List all IP ranges from: Google (Cloud & GoogleBot), Bing (Bingbot), Amazon (AWS), Microsoft (Azure), Oracle (Cloud) and DigitalOcean with daily updates.
Stars: ✭ 38 (-55.81%)
Mutual labels:  azure, google-cloud
Terrastack
This project is archived, but the idea of Terrastack lives on in the Terraform CDK. - https://github.com/hashicorp/terraform-cdk
Stars: ✭ 71 (-17.44%)
Mutual labels:  azure, google-cloud
Tf Serving K8s Tutorial
A Tutorial for Serving Tensorflow Models using Kubernetes
Stars: ✭ 78 (-9.3%)
Mutual labels:  google-cloud
Fog Google
Fog for Google Cloud Platform
Stars: ✭ 83 (-3.49%)
Mutual labels:  google-cloud
Architecture Center
Azure Architecture Center
Stars: ✭ 1,207 (+1303.49%)
Mutual labels:  azure
Pragmaticai
[Book-2019] Pragmatic AI: An Introduction to Cloud-based Machine Learning
Stars: ✭ 79 (-8.14%)
Mutual labels:  azure
Exram.gremlinq
A .NET object-graph-mapper for Apache TinkerPop™ Gremlin enabled databases.
Stars: ✭ 84 (-2.33%)
Mutual labels:  azure
Azure
Azure-related repository
Stars: ✭ 78 (-9.3%)
Mutual labels:  azure
Google Actions Starter
A Node.js server for Google Assistant (and Google Home).
Stars: ✭ 85 (-1.16%)
Mutual labels:  google-cloud
Handlebars.java
Logic-less and semantic Mustache templates with Java
Stars: ✭ 1,204 (+1300%)
Mutual labels:  templates
Plates
Native PHP template system
Stars: ✭ 1,195 (+1289.53%)
Mutual labels:  templates
Microgen
♻️ micro-generator for individual files, easy like sunday morning 🌅
Stars: ✭ 85 (-1.16%)
Mutual labels:  templates
Simpleupload
Simple upload system in PHP, compatible with AWS S3, Dropbox, Azure and others.
Stars: ✭ 85 (-1.16%)
Mutual labels:  azure

kubeformation

Create declarative specifications for your managed Kubernetes cloud vendor (GKE, AKS).

GoDoc Chat on Discord Follow on Twitter

Kubeformation Diagram

Motivation

With Kubernetes, it becomes possible to start making everything about your application declarative. As cloud vendors start providing managed Kubernetes services, provisioning a Kubernetes cluster via the vendor’s API becomes declarative as well.

Kubeformation is a simple web UI and CLI that helps you create “Google Deployment manager” or “Azure Resoure Manager” templates which are a little painful to create by hand.

Once you have this file, you can run your cloud vendor CLI on it to provision your cluster. You can edit this file to add vendor specific configuration too.

Usage

  • Write cluster spec. [docs]
  • Use the kubeformation CLI to generate template. [docs]
  • Follow provider specific instructions to create the cluster. [docs]

Example

Here's a spec that defines a Kubernetes cluster: cluster.yaml

version: v1
name: cluster-name
provider: gke
k8sVersion: "1.9"
nodePools:
- name: db-pool
  type: n1-standard-1
  size: 1
  labels:
    app: postgres
- name: backend-pool
  type: n1-standard-2
  size: 2
  labels:
    app: backend
volumes:
- name: postgres
  size: 10

kubeformation can read this file and generate Google Cloud Deployment Manager template, which can then be used with gcloud command to create the GKE cluster. This is a declarative template that can be used to further do create or modify the cluster.

$ kubeformation -f cluster.yaml -o templates

Then, use gcloud CLI to create the deployment. [docs]

$ gcloud deployment-manager deployments create my-cluster --config templates/gke-cluster.yaml

NOTE: kubeformation is exclusively meant for managed Kubernetes providers. The following providers are currently supported:

  1. Google Kubernetes Engine (GKE)
  2. Azure Container Service (AKS)

Installation

Download CLI for your platform from the releases page, add it to PATH and give execute permissions.

$ chmod +x kubeformation

Docs

Read complete docs here.

FAQ

  • Why cloud provider specific information, such as zone/region/location etc. does not appear in the cluster spec?
    • The purpose of Kubeformation is to bootstrap a cloud provider specific template that you can later modify according to your needs.

Roadmap

Kubeformation is open to evolution. Current goal is to support all managed Kubernetes vendors that support declarative specification.

  • EKS support (#10)
  • Other providers (#11)

Contributing

Kubeformation is an open source project licensed under Apache 2.0. Checkout the contributing guide to get started.

Maintainers

Current maintainers: @shahidh_k, @arvishankar, @JaisonTitus.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].