2017-05-04 18:43:11 +02:00
|
|
|
Kontemplate - A simple Kubernetes templater
|
2017-02-08 11:50:26 +01:00
|
|
|
===========================================
|
|
|
|
|
2017-02-08 13:03:06 +01:00
|
|
|
[![Build Status](https://travis-ci.org/tazjin/kontemplate.svg?branch=master)](https://travis-ci.org/tazjin/kontemplate)
|
|
|
|
|
2017-05-08 10:32:58 +02:00
|
|
|
Kontemplate is a simple CLI tool that can take sets of Kubernetes resource
|
|
|
|
files with placeholders and insert values per environment.
|
|
|
|
|
|
|
|
This tool was made because in many cases all I want in terms of Kubernetes
|
|
|
|
configuration is simple value interpolation per environment (i.e. Kubernetes
|
|
|
|
cluster), but with the same deployment files.
|
|
|
|
|
|
|
|
In my experience this is often enough and more complex solutions such as
|
|
|
|
[Helm][] are not required.
|
2017-02-08 11:50:26 +01:00
|
|
|
|
2017-07-29 20:29:43 +02:00
|
|
|
Check out a Kontemplate setup example and the feature list below!
|
|
|
|
|
2017-07-30 01:16:45 +02:00
|
|
|
<!-- markdown-toc start - Don't edit this section. Run M-x markdown-toc-refresh-toc -->
|
|
|
|
**Table of Contents**
|
|
|
|
|
|
|
|
- [Kontemplate - A simple Kubernetes templater](#kontemplate---a-simple-kubernetes-templater)
|
|
|
|
- [Features](#features)
|
|
|
|
- [Example](#example)
|
|
|
|
- [Installation](#installation)
|
|
|
|
- [Homebrew](#homebrew)
|
|
|
|
- [Arch Linux](#arch-linux)
|
|
|
|
- [Building repeatably from source](#building-repeatably-from-source)
|
|
|
|
- [Building from source](#building-from-source)
|
|
|
|
- [Usage](#usage)
|
|
|
|
- [Contributing](#contributing)
|
|
|
|
|
|
|
|
<!-- markdown-toc end -->
|
|
|
|
|
2017-07-29 20:29:43 +02:00
|
|
|
## Features
|
|
|
|
|
|
|
|
* [Simple, yet powerful templates](docs/templates.md)
|
|
|
|
* [Clean cluster configuration files](docs/cluster-config.md)
|
2017-07-30 01:12:00 +02:00
|
|
|
* [Resources organised as simple resource sets](docs/resource-sets.md)
|
2017-07-29 20:29:43 +02:00
|
|
|
* [Integration with pass](docs/pass.md)
|
|
|
|
* [Integration with kubectl](docs/kubectl.md)
|
|
|
|
|
|
|
|
## Example
|
2017-02-08 11:50:26 +01:00
|
|
|
|
2017-05-04 18:43:11 +02:00
|
|
|
Kontemplate lets you describe resources as you normally would in a simple folder structure:
|
2017-02-08 11:50:26 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
.
|
2017-02-08 13:15:36 +01:00
|
|
|
├── prod-cluster.yaml
|
2017-02-08 11:50:26 +01:00
|
|
|
└── some-api
|
|
|
|
├── deployment.yaml
|
|
|
|
└── service.yaml
|
|
|
|
```
|
|
|
|
|
|
|
|
This example has all resources belonging to `some-api` (no file naming conventions enforced at all!) in the `some-api`
|
|
|
|
folder and the configuration for the cluster `prod-cluster` in the corresponding file.
|
|
|
|
|
2017-02-08 13:15:36 +01:00
|
|
|
Lets take a short look at `prod-cluster.yaml`:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
---
|
|
|
|
context: k8s.prod.mydomain.com
|
|
|
|
global:
|
|
|
|
globalVar: lizards
|
|
|
|
include:
|
|
|
|
- name: some-api
|
|
|
|
values:
|
|
|
|
version: 1.0-0e6884d
|
|
|
|
importantFeature: true
|
|
|
|
apiPort: 4567
|
2017-02-08 11:50:26 +01:00
|
|
|
```
|
|
|
|
|
2017-05-08 10:32:58 +02:00
|
|
|
Those values are then templated into the resource files of `some-api`. That's it!
|
|
|
|
|
|
|
|
You can also set up more complicated folder structures for organisation, for example:
|
|
|
|
|
|
|
|
```
|
|
|
|
.
|
|
|
|
├── api
|
|
|
|
│ ├── image-api
|
|
|
|
│ │ └── deployment.yaml
|
|
|
|
│ └── music-api
|
|
|
|
│ └── deployment.yaml
|
|
|
|
│ │ └── default.json
|
|
|
|
├── frontend
|
|
|
|
│ ├── main-app
|
|
|
|
│ │ ├── deployment.yaml
|
|
|
|
│ │ └── service.yaml
|
|
|
|
│ └── user-page
|
|
|
|
│ ├── deployment.yaml
|
|
|
|
│ └── service.yaml
|
|
|
|
├── prod-cluster.yaml
|
|
|
|
└── test-cluster.yaml
|
|
|
|
```
|
|
|
|
|
|
|
|
And selectively template or apply resources with a command such as
|
|
|
|
`kontemplate apply test-cluster.yaml --include api --include frontend/user-page`
|
|
|
|
to only update the `api` resource sets and the `frontend/user-page` resource set.
|
2017-02-08 11:50:26 +01:00
|
|
|
|
2017-02-08 13:53:46 +01:00
|
|
|
## Installation
|
|
|
|
|
2017-05-18 20:54:31 +02:00
|
|
|
It is recommended to install Kontemplate from the signed binary releases available on the
|
|
|
|
[releases page][]. Release binaries are available for Linux, OS X, FreeBSD and Windows.
|
|
|
|
|
|
|
|
### Homebrew
|
|
|
|
|
|
|
|
OS X users with Homebrew installed can "tap" Kontemplate like such:
|
2017-02-08 13:53:46 +01:00
|
|
|
|
2017-05-18 20:54:31 +02:00
|
|
|
```sh
|
|
|
|
brew tap tazjin/kontemplate https://github.com/tazjin/kontemplate
|
|
|
|
brew install kontemplate
|
|
|
|
```
|
|
|
|
|
|
|
|
### Arch Linux
|
2017-05-08 10:34:16 +02:00
|
|
|
|
2017-05-08 13:53:24 +02:00
|
|
|
An [AUR package][] is available for Arch Linux and other `pacman`-based distributions.
|
|
|
|
|
2017-05-18 20:54:31 +02:00
|
|
|
### Building repeatably from source
|
|
|
|
|
|
|
|
Version pinning for Go dependencies is provided by a [Repeatr][] formula. After cloning
|
|
|
|
the repository the latest release can be built with `repeatr run kontemplate.frm`.
|
|
|
|
|
|
|
|
This will place release binaries in the `release` folder.
|
|
|
|
|
|
|
|
### Building from source
|
|
|
|
|
|
|
|
Assuming you have Go configured correctly, you can simply `go get github.com/tazjin/kontemplate/...`.
|
|
|
|
|
2017-02-08 11:50:26 +01:00
|
|
|
## Usage
|
|
|
|
|
2017-05-04 18:43:11 +02:00
|
|
|
You must have `kubectl` installed to use Kontemplate effectively.
|
2017-02-08 13:53:46 +01:00
|
|
|
|
2017-02-08 14:07:56 +01:00
|
|
|
```
|
2017-05-04 18:43:11 +02:00
|
|
|
usage: kontemplate [<flags>] <command> [<args> ...]
|
2017-02-08 14:07:56 +01:00
|
|
|
|
2017-05-04 18:43:11 +02:00
|
|
|
simple Kubernetes resource templating
|
2017-02-08 14:07:56 +01:00
|
|
|
|
2017-05-04 18:43:11 +02:00
|
|
|
Flags:
|
|
|
|
-h, --help Show context-sensitive help (also try --help-long and --help-man).
|
|
|
|
-i, --include=INCLUDE ... Resource sets to include explicitly
|
|
|
|
-e, --exclude=EXCLUDE ... Resource sets to exclude explicitly
|
2017-02-08 15:35:58 +01:00
|
|
|
|
2017-05-04 18:43:11 +02:00
|
|
|
Commands:
|
|
|
|
help [<command>...]
|
|
|
|
Show help.
|
2017-02-08 15:35:58 +01:00
|
|
|
|
2017-05-04 18:43:11 +02:00
|
|
|
template <file>
|
|
|
|
Template resource sets and print them
|
2017-02-08 14:07:56 +01:00
|
|
|
|
2017-05-04 18:43:11 +02:00
|
|
|
apply [<flags>] <file>
|
|
|
|
Template resources and pass to 'kubectl apply'
|
|
|
|
|
|
|
|
replace <file>
|
|
|
|
Template resources and pass to 'kubectl replace'
|
|
|
|
|
|
|
|
delete <file>
|
|
|
|
Template resources and pass to 'kubectl delete'
|
|
|
|
|
|
|
|
create <file>
|
|
|
|
Template resources and pass to 'kubectl create'
|
2017-02-08 16:47:33 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
|
2017-02-08 15:35:58 +01:00
|
|
|
Examples:
|
2017-02-08 13:53:46 +01:00
|
|
|
|
|
|
|
```
|
2017-02-08 15:35:58 +01:00
|
|
|
# Look at output for a specific resource set and check to see if it's correct ...
|
2017-05-04 18:43:11 +02:00
|
|
|
kontemplate template example/prod-cluster.yaml -i some-api
|
2017-02-08 13:53:46 +01:00
|
|
|
|
2017-02-08 15:35:58 +01:00
|
|
|
# ... maybe do a dry-run to see what kubectl would do:
|
2017-05-04 18:43:11 +02:00
|
|
|
kontemplate apply example/prod-cluster.yaml --dry-run
|
2017-02-08 13:53:46 +01:00
|
|
|
|
2017-02-08 15:35:58 +01:00
|
|
|
# And actually apply it if you like what you see:
|
2017-05-04 18:43:11 +02:00
|
|
|
kontemplate apply example/prod-cluster.yaml
|
2017-05-08 10:32:58 +02:00
|
|
|
```
|
|
|
|
|
2017-07-29 20:29:43 +02:00
|
|
|
Check out the feature list and the individual feature documentation above and read the
|
|
|
|
[best practices](docs/best-practices.md). Then you should be good to go!
|
|
|
|
|
2017-06-22 15:05:34 +02:00
|
|
|
## Contributing
|
|
|
|
|
|
|
|
Feel free to contribute pull requests, file bugs and open issues with feature suggestions!
|
|
|
|
|
|
|
|
Please follow the [code of conduct](CODE_OF_CONDUCT.md).
|
|
|
|
|
2017-05-08 10:34:16 +02:00
|
|
|
[Helm]: https://helm.sh/
|
|
|
|
[releases page]: https://github.com/tazjin/kontemplate/releases
|
2017-05-08 13:53:24 +02:00
|
|
|
[AUR package]: https://aur.archlinux.org/packages/kontemplate-git/
|
2017-05-18 20:54:31 +02:00
|
|
|
[Repeatr]: http://repeatr.io/
|