November 29, 2019

1583 words 8 mins read

garden-io/garden

garden-io/garden

Development orchestrator for Kubernetes, containers and functions.

repo name garden-io/garden
repo link https://github.com/garden-io/garden
homepage https://garden.io
language TypeScript
size (curr.) 36642 kB
stars (curr.) 1543
created 2017-12-03
license Mozilla Public License 2.0

Garden is a developer tool that automates your workflows and makes developing and testing Kubernetes applications faster and easier than ever.

  • Keep your development environment up-to-date as you code, and get rapid feedback.
  • Develop and iterate as quickly with remote clusters as you do locally, and share development clusters with your team. With remote clusters you can even run Garden without Kubernetes or Docker installed on your machine!
  • Start simple and grow complexity gradually as your needs evolve. Use simplified abstractions to start, and move to raw Kubernetes YAML, Helm, etc. only when you have to.
  • Simplify your CI by running the same commands and configuration during development and testing—and use the same build and test caches!

If you’re using Garden or if you like the project, please ★ star this repository to show your support 💖

Dashboard

Features

  • Spin up your whole stack with a single command, and (optionally) watch for changes. Only what’s needed gets re-built, re-deployed, and/or re-tested, so you get a much faster feedback loop.
  • Shared development clusters with fast in-cluster building and image caching for Kubernetes. This allows teams to easily share build and test results, and for CI to become much faster because it can use the same build and test caches as the team.
  • Get helpful information when your deployments fail. Garden collects events and logs and displays them prominently when issues come up, and strives to “fail fast”, so that you don’t need to wait for timeouts or dive into kubectl whenever something is wrong.
  • Easily write integration test suites that have runtime dependencies. Run tests before pushing your code to CI, and avoid having to mock or stub your own services.
  • Define tasks that run as part of your deployment process—e.g. database migrations or scaffolding.
  • Hot reload lets you near-instantaneously update code and static files in containers as they run, for services that support in-place reloading.
  • Remote sources support allows your project to automatically pull code from different repositories.
  • The built-in web dashboard gives you a full overview of your stack (and many more UI features are planned to further aid with development).
  • Build, test and deploy Docker containers, Helm charts, OpenFaaS functions and more.
  • An extensible plug-in system ensures you’ll later be able add anything that’s not on the above list, or create custom module types tailored to your needs (due summer 2019).

Installation

(Check out our documentation for more detailed instructions)

macOS

    brew tap garden-io/garden
    brew install garden-cli

Linux

    curl -sL https://get.garden.io/install.sh | bash

Windows

    Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/garden-io/garden/master/support/install.ps1'))

Quick start

With the CLI installed, you can try out a few commands using the Demo Project from our example projects. The example project consists of a couple of simple modules, each defining one service.

Note: This example assumes you have a local Kubernetes instance running.

Clone the repo and change into the demo-project directory:

    git clone https://github.com/garden-io/garden.git
    cd garden/examples/demo-project

Set up your environment, build the services and deploy the project by running:

    garden deploy

The services are now running on the Garden framework. You can see for yourself by querying the /hello-backend endpoint of backend’s running container:

    garden call backend/hello-backend

To run tests for all modules:

    garden test

And if you prefer an all-in-one command that watches your project for changes and re-builds, re-deploys, and re-tests automatically, try:

    garden dev

You can leave it running and change one of the files in the project, then watch it re-build and re-test as you edit your code!

Documentation

You can find Garden’s full documentation at https://docs.garden.io.

Overview:

  • Using Garden—short Guides on incrementally adding the main Garden constructs to your project.
  • Guides—development workflows, Garden configuration files, usage with remote Kubernetes clusters, and setting up hot reload.
  • Example Projects—guides based on some of the examples.
  • Reference—glossary, commands reference, configuration files reference, and template strings reference.
  • FAQs.

The examples folder of our repository also shows a myriad of different ways to use Garden. Check out the README in each example for more information

How does it work?

Garden runs as a developer tool on your machine or in CI, that looks at your source code and configuration files, runs tests, and resolves your changes to update your development environment. Garden can watch your files and run continuously, or you can trigger it manually via the CLI.

For configuration, Garden is centered around the Stack Graph, which allows you to fully codify how each part of your stack is built, deployed and tested—making your workflow reproducible and portable.

With the Stack Graph, each part of your stack can describe itself using simple, intuitive declarations, without changing any of your code. Garden collects all of your declarations—even across multiple repositories—into a full graph of your stack, and leverages that information to help you develop and test faster.

FAQs

Not exactly, but you can certainly use Garden to make your CI faster and easier to work with. We highly recommend running Garden from your CI setup, so that you can re-use the same structure and config, as well as your build and test result caches (if you’re using shared dev clusters).

We currently primarily support Kubernetes, but Garden is designed to be pluggable to work with any operational platform. Our focus is on making development and testing of distributed systems faster and easier, but Kubernetes is where we’re focusing our efforts today.

That said, we have made experimental plugins for Docker Swarm, Google Cloud Functions and more. When we release our plugin SDK later this year, we plan on working with the developer community to support a variety of platforms, including a number of serverless/FaaS platforms. This will allow users to pick and choose platforms for individual services, but keep the same development and testing workflows across the board.

Garden generally has a broader focus, and has a lot of features to manage dependencies, tests and other relationships between different parts of your stack. In turn, Garden may be slightly more complex to get started with, and has some additional terminology to learn. Skaffold and Tilt are also coupled to Kubernetes, whereas Garden is designed to be more extensible and flexible.

This has pros and cons in either direction, since tight coupling can in some cases enable some more specific Kubernetes-related features. However, we feel strongly that your developer tools should be adaptable across platforms, especially considering all the interesting technologies that are on the horizon, such as WASM, serverless, edge functions, etc.

You can use garden deploy to deploy to production if you don’t need gradual rollouts, canary deployments, etc. but Garden does not yet support those directly.

As your needs evolve (if they haven’t already), we recommend using helm modules or raw Kubernetes manifests using the kubernetes module type. You can then use those same Helm charts and manifests with any CD/GitOps tool of your choosing.

Garden is free and open source. We are working on SaaS and Enterprise products that use the open-source project, but we will not make a closed-source version of this project. If you need professional support, please reach out.

We find TypeScript strikes a good balance between power and simplicity, and it handles asynchronous work really well. We also get rid of some of the key weaknesses of Node.js by using Zeit’s pkg to distribute Garden as a single binary, so users don’t need to think about npm and all that stuff.

We do plan on splitting Garden into more components, some of which will be written in Go, and to make plugin SDKs for both TypeScript/JavaScript and Go.

We feel it’s a nice and welcoming name :) And we like the notion that your software grows in a living environment. Like a well kept garden of flowers and plants, your software stack is a living system of living things.

Seasons change, as technologies do. New ideas come alive and some die or fall out of favor. Most importantly, all of them need to work and thrive together in their little ecosystem—your own Garden.

Status

Until Garden reaches 1.0, APIs may still change between minor releases (0.x). Patch releases (0.x.y) are guaranteed not to include any breaking changes. We detail all breaking changes in our release notes.

Support

Please join the #garden channel on the Kubernetes Slack to ask questions, discuss how Garden can fit into your workflow, or just chat about all things DevOps.

Acknowledgements

Garden would not be possible without an amazing ecosystem of open-source projects. Here are some of the projects that Garden uses, either directly or indirectly:

Garden, as a company, is also a proud member of the CNCF.

Telemetry

We are trying to make Garden the best tool possible, and it’s very useful for us to inform the future development of Garden with data on how it’s being used.

When you use Garden we collect information about the commands you run, the tasks getting executed, the project and operating system. We care about your privacy and we take special care to anonymize all the information. For example, we hash module names, and use randomly generated IDs to identify projects.

If you are curious to see an example of the data we collect or if you would like to update your preference, please visit the Telemetry page.

License

Garden is licensed according to Mozilla Public License 2.0 (MPL-2.0).

comments powered by Disqus