jdfalk / kubernetes-split-yaml

Split the 'giant yaml file' into one file pr kubernetes resource

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

kubernetes-split-yaml

Build Status Go Report Card codecov FOSSA Status

Split the 'giant yaml file' into one file pr kubernetes resource

Installation

If you have golang installed you can use go get.

$ go get -v github.com/mogensen/kubernetes-split-yaml

This will download the source and install the binary kubernetes-split-yaml

Usage

  • Simple invocation
$ kubernetes-split-yaml giant-k8s-file.yaml
  • Modify / filter output filenames
# Note by default it'll output 0.2.0 non-hierical files
$ kubernetes-split-yaml --help

# Get namespaced hierarchy for output files
$ kubernetes-split-yaml --template_sel tpl_ns --outdir my-clustername/namespaces giant-k8s-file.yaml

# Ditto above, but only for Kubernetes objects starting with "myapp"
$ kubernetes-split-yaml --name_re ^myapp --template_sel tpl_ns --outdir my-clustername/namespaces giant-k8s-file.yaml

# Ditto above, but only for Deployments and StatefulSets
$ kubernetes-split-yaml --kind_re '^(StatefulSet|Deployment)' --name_re ^myapp --template_sel tpl_ns --outdir my-clustername/namespaces giant-k8s-file.yaml

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

FOSSA Status

About

Split the 'giant yaml file' into one file pr kubernetes resource


Languages

Language:Go 100.0%