patch

package
v0.1.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 25, 2018 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Overview

Package patch provides method to calculate JSON patch between 2 k8s objects.

Calculate JSON patch

oldDeployment := appsv1.Deployment{
	// some fields
}
newDeployment := appsv1.Deployment{
	// some different fields
}
patch, err := NewJSONPatch(oldDeployment, newDeployment)
if err != nil {
	// handle error
}

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewJSONPatch

func NewJSONPatch(original, current runtime.Object) ([]jsonpatch.JsonPatchOperation, error)

NewJSONPatch calculates the JSON patch between original and current objects.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL