Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for NewErrs (0.06 sec)

  1. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    	validators := []FeatureValidator{
    		CheckServicePorts,
    		CheckAutoScaleAndReplicaCount,
    	}
    
    	for _, validator := range validators {
    		newErrs, newWarnings := validator(values, spec)
    		errs = util.AppendErrs(errs, newErrs)
    		warnings = append(warnings, newWarnings...)
    	}
    
    	return
    }
    
    // CheckAutoScaleAndReplicaCount warns when autoscaleEnabled is true and k8s replicaCount is set.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top