Skip to main content

kreate kubernetes application from templates

Project description

kreate-kube

kreate kubernetes/kustomize yaml files based on templates

The purpose of the kreate-kube framework is to easily create kubernetes resources for an application. This is especially useful if you have many different applications that you would like to keep as similar as possible, while also having flexibility to tweak each application.

Installing and running kreate-kube

Installing

The kreate-kube framework is available on PyPi. To install it, you will need:

  • python3 At least version 3.8 is needed.
  • venv virtual environments in Python when you need to use different versions of the framework.
  • pip package installer for python, to install packages

To create a virtual environment with kreate-kube in a Linux or Unix environment (like MacOs) one should:

python3 -m venv .venv         # create a virtual environment in the .venv directory
. .venv/bin/activate          # activate the virtual environment
python3 -m pip  kreate-kube   # install the latest version of kreate-kube

This will install the kreate-kube package, including a script kreate that can be called from the commandline.

Note: For Windows the commands might be slightly different, but venv and pip are well documented in the Python community.

Running

You can now call the kreate command line. Some examples:

kreate -h          # show help info
kreate version     # show the version

kreate files   # kreate all files based on the konfig.yaml in the current directory
kreate         # The same (files is the default command)

kreate diff    # kreate output that shows differences between the kreate and a real kubernetes cluster
kreate apply   # apply the kreated files to a kubernetes cluster

Note: for diff and apply your .kube/config should be set up correctly

By default kreate It will look for a file konfig.yaml in your current directory. It is possible to specify a different directory or file using the --konfig option. If this is a directory it will look for a konfig.yaml file in this directory.

Example using application structure file

Kreating resources is based on a application strukture definition file. Usually there are ate least 3 files needed for a setup:

  • konfig.yaml ties all together
  • <app>-strukture.yaml describes the structure of all application components
  • values-<app>-<env>.yaml contains specific values for a certain environment Note that these filename may be changed.

demo-strukture.yaml

The structure file is a yaml describing in a high level which resources are needed:

Deployment:
  main:
    vars:
    - demo-vars
    secret-vars:
    - demo-secrets
    patches:
      AntiAffinityPatch: {}
      HttpProbesPatch: {}
      AddEgressLabelsPatch: {}

Egress:
  db:
    name: egress-to-db
    cidr_list: {{ val.db_egress_cidr_list }}
    port: {{ val.db_port }}

Ingress:
  all:
    host: {{ val.ingress_host_internal }}
    path: /
    options:
      - basic_auth

Kustomization:
  main:
    configmaps:
      demo-vars:
        vars:
          ENV: {{ val.env }}
          DB_URL: {{ val.DB_URL }}

Secret:
  main:
    name: demo-secrets
    vars:
      DB_PSW: {{ secret.DB_PSW | dekrypt() }}
      DB_USR: {{ secret.DB_USR }}

SecretBasicAuth:
  basic-auth:
    users:
      - admin
      - guest

Service:
  main:
    name: demo-service

Note: This shows only a small subset of possibilities of kreate-kube

konfig.yaml

The konfig.yaml ties everything together:

  • Some general values (mainly application name and enviroment)
  • extra environment specific "stuff" to load
    • values such as IP numbers and urls
    • secrets such as usernames and passwords
  • what strukture file(s) to use In general values and secrets will be loaded from separate files, to keep the konfig.yaml file simple, and to separate this environment specific part separated.

The file can contain several other things as well:

  • files to be mounted in a pod, such as application configuration files
  • secret_files as files, but encrypted and stored as kubernetes Secret
  • extra custom templates for resources and patches

Below is a simple but typical example.

app:
  appname: demo
  env: dev
  team: knights
val:
  project: kreate-kube-demo
  image_version: 2.0.2
inklude:
  - values-demo-dev.yaml
  - secrets-demo-dev.yaml
strukt:
  - demo-strukture.yaml

Versions of kreate-kube

At this moment there are not many versions of kreate-kube:

  • 0.1.0 This version was incomplete and does not work when installed from Pypi
  • 0.2.0 This was the first functional version
  • 0.3.0
    • use of a more flat konfig.yaml, with a main app section
    • support for default files to simplify konfig.yaml
    • rename of several patches to remove Patch suffix, and not start with a verb
    • many improvements and cleanup changes
  • 0.4.0 This is the current version, and adds many backward incompatible changes
    • use repo's for
      • inkludes of konf files
      • strukture files
      • deployment files
    • much flatter konfig structure with val, var, secret and system
    • many other improvements It is expected that new versions will come out regulary:
  • fixing bugs
  • enhancing command line interface
  • adding templates
  • improving templates and default values
  • improving Python API Some of these enhancements may not be backward compatible. While in 0.x stage there will be only garantuee for backward compatibility between patch versions (e.g. 0.x.1 and 0.x.2)

After the 1.0 release a semantic versioning for backward compatibilty will be used.

In general you should specify a specific version of kreate with a requirements.txt file.

Help

this is the output of the kreate-kube --help command

$ kreate --help
usage: kreate [optional arguments] [<subcommand>] [subcommand options]

kreates files for deploying applications on kubernetes

positional arguments:
  see subcommands

optional arguments:
  -h, --help            show this help message and exit
  --testdummy           do not dekrypt values
  -d DEFINE, --define DEFINE
                        define yame (toplevel) element
  -i INKLUDE, --inklude INKLUDE
                        inklude extra files before parsing main konfig
  -k KONF, --konf KONF  konfig file or directory to use (default=.)
  -v, --verbose         output more details (inluding stacktrace) -vv even more
  -w, --warn            only output warnings
  -q, --quiet           do not output any info, just essential output
  -K, --keep-secrets    do not remove secrets dirs
  -C, --skip-version-check
                        do not check if required version of kreate is used
  -F, --force-version-check
                        force version check even if development version is detected
  --no-dotenv           do not load a .env file for working dir

subcommands:
  clear_repo_cache  cc  clear the repo cache
  version           vr  view the version
  view              v   view the entire konfig or subkey(s)
  view_template     vt  view the template for a specific kind
  dek_lines         dl  dekrypt lines in a text file
  dekstr            ds  dekrypt string value
  dekfile           df  dekrypt an entire file
  enk_lines         el  enkrypt lines in a text file
  enkfile           ef  enkrypt an entire file
  enkstr            es  enkrypt string value
  files             f   kreate all the files (default command)
  build             b   output all the resources
  diff              d   diff with current existing resources
  apply             a   apply the output to kubernetes
  test              t   test output against expected-output-<app>-<env>.out file
  testupdate        tu  update expected-output-<app>-<env>.out file
  kubeconfig        kc  kreate a kubeconfig file from a template

History

This is a rewrite of a similar project written as bash scripts. The bash scripts have been used for deploying over 30 applications to development, acceptance and production environments.

However the bash scripting language was not the best choice, so Python was chosen for several reasons:

  • Large bash scripts are difficult to maintain
    • google coding guidelines demand that bash scripts over 100 lines long are to be rewritten in Python. See https://google.github.io/styleguide/shellguide.html#when-to-use-shell, which states:

      if you are writing a script that is more than 100 lines long, or that uses non-straightforward control flow logic, you should rewrite it in a more structured language now. Bear in mind that scripts grow. Rewrite your script early to avoid a more time-consuming rewrite at a later date.

    • not many devops team members are proficient in bash
    • no OO and limited var scoping (most vars are global vars)
  • Possibility to run natively on Windows (with Python installed)
    • no CRLF problems
    • Windows can recognizes *.py extension to prevent Linux file permission problems on Windows filesystems
  • Much cleaner code
    • yaml parser
    • jinja templates
    • modular design, where a team can add team-specific templates and defaults for their set of applications
    • powerful requirements.txt/pip dependency management

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kreate_kube-0.9.0.tar.gz (38.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kreate_kube-0.9.0-py3-none-any.whl (41.5 kB view details)

Uploaded Python 3

File details

Details for the file kreate_kube-0.9.0.tar.gz.

File metadata

  • Download URL: kreate_kube-0.9.0.tar.gz
  • Upload date:
  • Size: 38.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.9.3 CPython/3.8.10

File hashes

Hashes for kreate_kube-0.9.0.tar.gz
Algorithm Hash digest
SHA256 2d5a6204b74ddd1f269938b6840f558ed63d8e39931f9f30d101e0baf4d2b28b
MD5 ee3fb8623a8af23755fdb18570685b73
BLAKE2b-256 7c130894840238a78bd5990e31599fb7cd8997a2ef5f5187bc1234a2f4871a9d

See more details on using hashes here.

File details

Details for the file kreate_kube-0.9.0-py3-none-any.whl.

File metadata

  • Download URL: kreate_kube-0.9.0-py3-none-any.whl
  • Upload date:
  • Size: 41.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.9.3 CPython/3.8.10

File hashes

Hashes for kreate_kube-0.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d55a4519ed426ae729cbea6526026ed936d93637a3f1c6454a890358e2821ab3
MD5 4496b159048ed58c4863cd1a1f436882
BLAKE2b-256 2434eb090759bccd54752eaedcaf76065ad61fea495e9dbb8bb421aff01a7c16

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page