func()

in internal/controller/wrappers.go [66:71]


func (d *DeploymentWrapper) RemoveAnnotation(status string) {
	//always need to new map to reset the status of deployment and clear previous ones
	if d.obj.Annotations != nil {
		delete(d.obj.Annotations, status)
	}
}