func()

in internal/controller/wrappers.go [58:63]


func (d *DeploymentWrapper) AddAnnotation(status, newReplicas string) {
	if d.obj.Annotations == nil {
		d.obj.Annotations = make(map[string]string)
	}
	d.obj.Annotations[status] = newReplicas
}