Skip to content
This repository has been archived by the owner on Mar 3, 2021. It is now read-only.

Generates a JSON patch diff based on the parameters provided to `helm upgrade`.

License

Notifications You must be signed in to change notification settings

bacongobbler/helm-patchdiff

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

helm-patchdiff

Generates a JSON patch diff based on the parameters that would be passed along to helm upgrade.

ARCHIVED

This project was a proof of concept to generate the same patch diffs as Helm. I do not plan on maintaining this as an official Helm plugin.

Usage

$ go build
$ ./helm-patchdiff RELEASE_NAME CHART_NAME

Example

$ helm create foo
$ helm install foo ./foo
$ ./helm-patchdiff foo ./foo/
[{},{},{}]
$ ./helm-patchdiff foo ./foo/ --set replicaCount=3
[{},{},{"spec":{"replicas":3}}]

About

Generates a JSON patch diff based on the parameters provided to `helm upgrade`.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages