On this page

Awesome Kustomize

A curated collection of resources and projects focused on Kustomize.

Contents

Overview

Kustomize works as a standalone binary and is also built into kubectl (since v1.14). It can be used with off-the-shelf applications, such as Helm charts. Also, it has deep integration with various GitOps tools, such as ArgoCD, Flux, and others.

Plugins

Kustomize has 3 plugin types: generator, transformer, and validator.

Note

If you are a plugin developer, it’s highly recommended to support the new plugins standard KRM function.

Generators

  • Secretize - Generating Kubernetes Secret from various sources. It’s like a Swiss Army knife, but for Kubernetes secrets (Containerized KRM, Exec KRM, Exec).
  • SopsSecretGenerator - Generating Secrets from sops-encrypted files (Exec KRM, Exec).
  • KSops - Generating Secrets from sops-encrypted files (Exec).
  • PolicyGenerator - Generating Open Cluster Management policies (Exec).
  • KRMFfnBuiltin - Running builtin generators transformers (Exec).
  • Merger - Generating manifests seamlessly by extending Kustomize merge strategies using schemaless StrategicMerge (Containerized KRM, Exec KRM).

Transformers

  • HelmValuesTransformer - Transforming values in HelmRelease CustomResource. It helps manage many HelmRelease values in a single transformer file (Exec).
  • TemplateTransformer - Providing a set of KRM Functions to run built-in transformers in place (Containerized KRM, Exec KRM).

Validators

  • KubeconformValidator - Validating Kubernetes manifests using embedded Kubeconform (Containerized KRM, Exec KRM).

Guides

Kustomize guides based on their level or type, like 📰 Article, 📺 Video, 🧪 Lab.

Novice

Intermediate

Advanced

Tips & Tricks

Snippets

Snippets are Kustmoize use-case-specific examples that can help with common day-to-day operations.

Misc