Documentation
¶
Index ¶
- Constants
- Variables
- func DeleteNullInJson(jsonBytes []byte) ([]byte, map[string]interface{}, error)
- type Annotator
- func (a *Annotator) GetModifiedConfiguration(obj runtime.Object, annotate bool) ([]byte, error)
- func (a *Annotator) GetOriginalConfiguration(obj runtime.Object) ([]byte, error)
- func (a *Annotator) SetLastAppliedAnnotation(obj runtime.Object) error
- func (a *Annotator) SetOriginalConfiguration(obj runtime.Object, original []byte) error
- type CalculateOption
- type PatchMaker
- type PatchResult
Constants ¶
View Source
const LastAppliedConfig = "banzaicloud.com/last-applied"
Variables ¶
View Source
var DefaultAnnotator = NewAnnotator(LastAppliedConfig)
View Source
var DefaultPatchMaker = NewPatchMaker(DefaultAnnotator)
Functions ¶
Types ¶
type Annotator ¶
type Annotator struct {
// contains filtered or unexported fields
}
func NewAnnotator ¶
func (*Annotator) GetModifiedConfiguration ¶
GetModifiedConfiguration retrieves the modified configuration of the object. If annotate is true, it embeds the result as an annotation in the modified configuration. If an object was read from the command input, it will use that version of the object. Otherwise, it will use the version from the server.
func (*Annotator) GetOriginalConfiguration ¶
GetOriginalConfiguration retrieves the original configuration of the object from the annotation, or nil if no annotation was found.
func (*Annotator) SetLastAppliedAnnotation ¶
SetLastAppliedAnnotation gets the modified configuration of the object, without embedding it again, and then sets it on the object as the annotation.
type CalculateOption ¶
func IgnoreField ¶
func IgnoreField(field string) CalculateOption
func IgnorePDBSelector ¶
func IgnorePDBSelector() CalculateOption
func IgnorePersistenVolumeFields ¶ added in v1.7.3
func IgnorePersistenVolumeFields() CalculateOption
func IgnoreStatusFields ¶
func IgnoreStatusFields() CalculateOption
func IgnoreVolumeClaimTemplateTypeMetaAndStatus ¶
func IgnoreVolumeClaimTemplateTypeMetaAndStatus() CalculateOption
type PatchMaker ¶
type PatchMaker struct {
// contains filtered or unexported fields
}
func NewPatchMaker ¶
func NewPatchMaker(annotator *Annotator) *PatchMaker
func (*PatchMaker) Calculate ¶
func (p *PatchMaker) Calculate(currentObject, modifiedObject runtime.Object, opts ...CalculateOption) (*PatchResult, error)
type PatchResult ¶
func (*PatchResult) IsEmpty ¶
func (p *PatchResult) IsEmpty() bool
func (*PatchResult) String ¶
func (p *PatchResult) String() string
Click to show internal directories.
Click to hide internal directories.