Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 95 of 95 for egressGateways (0.26 sec)

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

    	}
    	if !values.GetGateways().GetIstioEgressgateway().GetRunAsRoot().GetValue() {
    		errs = util.AppendErrs(errs, validateGateways(spec.GetComponents().GetEgressGateways(), "istio-egressgateway"))
    	}
    	for _, raw := range values.GetGateways().GetIstioIngressgateway().GetIngressPorts() {
    		p := raw.AsMap()
    		var tp int
    		if p["targetPort"] != nil {
    			t, ok := p["targetPort"].(float64)
    			if !ok {
    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. pkg/test/framework/components/istio/kube.go

    		args.AppendSet("meshConfig.defaultConfig.proxyMetadata.ISTIO_DUAL_STACK", "true")
    		args.AppendSet("values.gateways.istio-ingressgateway.ipFamilyPolicy", "RequireDualStack")
    		args.AppendSet("values.gateways.istio-egressgateway.ipFamilyPolicy", "RequireDualStack")
    	}
    
    	// Include all user-specified values.
    	for k, v := range cfg.Values {
    		args.AppendSet("values."+k, v)
    	}
    
    	for k, v := range cfg.OperatorOptions {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Next available 31.
    }
    
    // Configuration for gateways.
    message GatewaysConfig {
      // Configuration for an egress gateway.
      EgressGatewayConfig istio_egressgateway = 1 [json_name = "istio-egressgateway"];
    
      // Controls whether any gateways are enabled.
      google.protobuf.BoolValue enabled = 2;
    
      // Configuration for an ingress gateway.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    	// Destination rules are defined here for global purposes. We do not want these
    	// catch all destination rules to be the only dest rule, when processing CDS for
    	// proxies like the istio-ingressgateway or istio-egressgateway.
    	// If there are no service specific dest rules, we will end up picking up the same
    	// rules anyway, later in the code
    
    	// 1. select destination rule from proxy config namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    	// Configuration for an egress gateway.
    	IstioEgressgateway *EgressGatewayConfig `protobuf:"bytes,1,opt,name=istio_egressgateway,json=istio-egressgateway,proto3" json:"istio_egressgateway,omitempty"`
    	// Controls whether any gateways are enabled.
    	Enabled *wrapperspb.BoolValue `protobuf:"bytes,2,opt,name=enabled,proto3" json:"enabled,omitempty"`
    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