Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetPilot (0.14 sec)

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

    func CheckAutoScaleAndReplicaCount(values *valuesv1alpha1.Values, spec *v1alpha1.IstioOperatorSpec) (errs util.Errors, warnings []string) {
    	if values.GetPilot().GetAutoscaleEnabled().GetValue() && spec.GetComponents().GetPilot().GetK8S().GetReplicaCount() > 1 {
    		warnings = append(warnings,
    			"components.pilot.k8s.replicaCount should not be set when values.pilot.autoscaleEnabled is true")
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	if x != nil {
    		return x.Gateways
    	}
    	return nil
    }
    
    func (x *Values) GetGlobal() *GlobalConfig {
    	if x != nil {
    		return x.Global
    	}
    	return nil
    }
    
    func (x *Values) GetPilot() *PilotConfig {
    	if x != nil {
    		return x.Pilot
    	}
    	return nil
    }
    
    func (x *Values) GetZtunnel() *structpb.Value {
    	if x != nil {
    		return x.Ztunnel
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top