func()

in internal/controller/wrappers.go [38:43]


func (d *DeploymentWrapper) GetReplicas() int32 {
	if d.obj.Spec.Replicas == nil {
		return 1 // Default value in Kubernetes if not set
	}
	return *d.obj.Spec.Replicas
}