Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for ingressGateways (0.28 sec)

  1. tests/integration/pilot/ingress_test.go

    				rev := ""
    				if t.Settings().Revisions.Default() != "" {
    					rev = t.Settings().Revisions.Default()
    				}
    				os.WriteFile(d, []byte(fmt.Sprintf(`
    revision: %v
    gateways:
      istio-ingressgateway:
        name: custom-gateway-helm
        injectionTemplate: gateway
        type: ClusterIP # LoadBalancer is slow and not necessary for this tests
        autoscaleMax: 1
        resources:
          requests:
            cpu: 10m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. tests/integration/security/jwt_test.go

    					},
    				},
    			}))
    		})
    }
    
    // TestIngressRequestAuthentication tests beta authn policy for jwt on ingress.
    // The policy is also set at global namespace, with authorization on ingressgateway.
    func TestIngressRequestAuthentication(t *testing.T) {
    	framework.NewTest(t).
    		Label(label.IPv4). // https://github.com/istio/istio/issues/35835
    		Run(func(t framework.TestContext) {
    			config.New(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  3. pilot/pkg/xds/endpoints/ep_filters_test.go

    	//  - 0 gateways for network4
    	ds := environment(t)
    	origServices := ds.Env().Services()
    	origGateways := ds.Env().NetworkGateways()
    	ds.MemRegistry.AddService(&model.Service{
    		Hostname: "istio-ingressgateway.istio-system.svc.cluster.local",
    		Attributes: model.ServiceAttributes{
    			ClusterExternalAddresses: &model.AddressMap{
    				Addresses: map[cluster.ID][]string{
    					"cluster2a": {""},
    					"cluster2b": {""},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  4. pkg/istio-agent/xds_proxy.go

    	if err != nil {
    		// Envoy logs errors again, so no need to log beyond debug level
    		log.Debugf("failed to create upstream grpc client: %v", err)
    		// Increase metric when xds connection error, for example: forgot to restart ingressgateway or sidecar after changing root CA.
    		metrics.IstiodConnectionErrors.Increment()
    		return err
    	}
    	log.Infof("connected to upstream XDS server: %s", p.istiodAddress)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. pkg/test/framework/components/istio/kube.go

    	if ctx.Settings().EnableDualStack {
    		args.AppendSet("values.pilot.env.ISTIO_DUAL_STACK", "true")
    		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 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_test.go

    		Metadata:        &proxyGatewayMetadata,
    		ConfigNamespace: "not-default",
    	}
    	proxyGatewayMetadata = model.NodeMetadata{
    		Namespace: "not-default",
    		Labels: map[string]string{
    			"istio": "ingressgateway",
    		},
    	}
    	virtualServiceSpec = &networking.VirtualService{
    		Hosts:    []string{"test.com"},
    		Gateways: []string{"mesh"},
    		Tcp: []*networking.TCPRoute{
    			{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Configuration for an ingress gateway.
    	IstioIngressgateway *IngressGatewayConfig `protobuf:"bytes,4,opt,name=istio_ingressgateway,json=istio-ingressgateway,proto3" json:"istio_ingressgateway,omitempty"`
    	SecurityContext     *structpb.Value       `protobuf:"bytes,10,opt,name=securityContext,proto3" json:"securityContext,omitempty"`
    }
    
    func (x *GatewaysConfig) Reset() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  8. 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)
Back to top