Skip to content

This repository contains a reference implementation of korganizer, a config management and chart organization framework

Notifications You must be signed in to change notification settings

DataReply/korganizer-reference

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Korganizer - Configuration Management and Chart Organization Framework

example workflow name


Korganizer helps you organize your releases and their configs like a good boi

This repository illustrates the chart organization framework used in Korgi. It is based on helmfile and implements the following concepts:

  • logical organization into namespaces, app groups, apps and releases
  • multi-layer value organization to support DRY configuration management
  • ability to use templating in release value definitions
  • supports kustomize-based chart patching
  • supports deploying helm charts and arbitrary kubernetes config resources

Entities - Namespaces, App Groups, Apps and Releases

Korganizer organizes charts and their respective installations inside realm/namespaces. Namespaces are composed of app groups which in turn contain multiple apps. Apps are represented by app files and reference one or many release definitions. A release definition states the helm chart to install, while the installation instruction becomes complete only after the instantiation of environment specific release values that are managed under realm/values. That being said, Korganizer assumes that all these mentioned entities are present across environments and differences between environments will preferrably be configured inside the respective environment value directory.

The following diagram illustrates the logical chart organization of a fictitious Kubernetes project.

The organization into namespaces, app groups and apps implemented inside this repository, is illustrated by the following tree view.

├── _defaults.yaml
├── layer-base (namespace)
│   ├── _namespace.yaml
│   ├── monitoring (app group)
│   │   ├── _app_group.yaml
│   │   └── prometheus.yaml (app file composed of multiple releases)
│   ├── network
│   │   ├── _app_group.yaml
│   │   ├── cni.yaml
│   │   └── ingress.yaml
│   ├── storage
│   │   ├── _app_group.yaml
│   │   ├── driver.yaml
│   │   └── volumes.yaml
│   └── system
│       ├── _app_group.yaml
│       ├── kyverno.yaml
│       └── scaling.yaml
└── layer-infra (namespace)
    ├── _namespace.yaml
    └── monitoring
        ├── _app_group.yaml
        ├── exporter.yaml
        ├── grafana.yaml
        └── prometheus.yaml

Release Value and Secret Layering

Release values can be specified at different levels/layers

(higher has precedence)

  1. helm defaults specified alongside the helm chart example
  2. general defaults across environments example
  3. general defaults for a specific environment (e.g. defaults for the dev environment) example
  4. general namespace defaults across namespace (e.g. layer-infra both in dev and prod) example
  5. namespace default for a specific environment (e.g. layer-infra in prod only) example
  6. app group defaults across all environments (e.g. defaults for system group both in dev and prod) example
  7. app group defaults for a specific environment (e.g. defaults for monitoring group in dev) example
  8. app defaults across all environments (e.g. defaults for prometheus app in both dev and prod) example
  9. app defaults for a specific environment (e.g. defaults for prometheus app in prod) example
  10. release defaults across all environments (e.g. defaults for cilium release in both dev and prod) example
  11. release defaults for a specific environment (e.g. defaults for cilium release in dev) example
  12. release defaults specified alongside the release in the app file example

The tree view of values specified inside this reference project is given by:

├── defaults
│   ├── layer-base
│   │   ├── monitoring
│   │   │   └── prometheus
│   │   │       └── prometheus-base.gotmpl
│   │   ├── network
│   │   │   └── ingress
│   │   │       └── ingress-examples.gotmpl
│   │   ├── storage
│   │   │   └── volumes
│   │   │       ├── values.gotmpl
│   │   │       └── values.yaml
│   │   └── system
│   │       └── kyverno
│   │           ├── kyverno-mutation-policies.gotmpl
│   │           └── kyverno.gotmpl
│   ├── layer-infra
│   │   ├── monitoring
│   │   │   ├── exporter
│   │   │   │   ├── aws-cloudwatch-exporter-sa.gotmpl
│   │   │   │   └── prometheus-blackbox-exporter.gotmpl
│   │   │   ├── grafana
│   │   │   │   ├── dashboards
│   │   │   │   │   ├── base
│   │   │   │   │   │   ├── kube-state-metrics.json
│   │   │   │   │   │   └── prometheus-alerts-overview.json
│   │   │   │   │   └── gitlab-pipelines
│   │   │   │   │       ├── gitlab-ci-deployments.json
│   │   │   │   │       ├── gitlab-ci-jobs.json
│   │   │   │   │       └── gitlab-ci-pipelines.json
│   │   │   │   ├── grafana-resources.gotmpl
│   │   │   │   └── grafana.gotmpl
│   │   │   └── prometheus
│   │   │       ├── prometheus-base.yaml
│   │   │       ├── prometheus-pushgateway.gotmpl
│   │   │       ├── prometheus.gotmpl
│   │   │       └── values.gotmpl
│   │   └── values.yaml
│   ├── secrets.yaml
│   ├── secrets.yaml.dec
│   ├── values.gotmpl
│   └── values.yaml
└── env
    ├── client-dev
    │   ├── layer-infra
    │   │   └── monitoring
    │   │       ├── grafana
    │   │       │   ├── grafana.yaml
    │   │       │   ├── secrets.yaml
    │   │       │   └── secrets.yaml.dec
    │   │       └── prometheus
    │   │           ├── prometheus-apps.yaml
    │   │           ├── prometheus-base.yaml
    │   │           ├── prometheus-data.yaml
    │   │           ├── prometheus-infra.yaml
    │   │           ├── prometheus-interfaces.yaml
    │   │           └── prometheus.yaml
    │   └── values.yaml
    ├── client-prod
    │   ├── layer-infra
    │   │   └── monitoring
    │   │       ├── exporter
    │   │       │   └── values.yaml
    │   │       ├── grafana
    │   │       │   ├── grafana.yaml
    │   │       │   ├── secrets.yaml
    │   │       │   └── secrets.yaml.dec
    │   │       └── prometheus
    │   │           ├── prometheus-data.yaml
    │   │           ├── prometheus-infra.yaml
    │   │           └── prometheus.yaml
    │   └── values.yaml
    └── migration-dev
        └── values.yaml

Test this repository

Please follow the steps described in the walkthrough.

About

This repository contains a reference implementation of korganizer, a config management and chart organization framework

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published