Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 74 for egress (0.15 sec)

  1. pkg/config/validation/validation_test.go

    			Egress: []*networking.IstioEgressListener{
    				{
    					Hosts: []string{"~/*"},
    				},
    			},
    		}, true, false},
    		{"bad egress host 1", &networking.Sidecar{
    			Egress: []*networking.IstioEgressListener{
    				{
    					Hosts: []string{"*"},
    				},
    			},
    		}, false, false},
    		{"bad egress host 2", &networking.Sidecar{
    			Egress: []*networking.IstioEgressListener{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    		for index, egress := range rule.Egress {
    			if egress == nil {
    				errs = AppendValidation(errs, errors.New("egress listener may not be null"))
    				continue
    			}
    			// there can be only one catch all egress listener with empty port, and it should be the last listener.
    			if egress.Port == nil {
    				if !catchAllEgressListenerFound {
    					if index == len(rule.Egress)-1 {
    						catchAllEgressListenerFound = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/tests/go122-gc-stress.test

    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/slice.go"
    String id=32
    	data="main.main.func1"
    String id=33
    	data="/usr/local/google/home/mknyszek/work/go-1/src/internal/trace/v2/testdata/testprog/gc-stress.go"
    String id=34
    	data="runtime.gcMarkDone"
    String id=35
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mgc.go"
    String id=36
    	data="runtime.gcMarkTermination"
    String id=37
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/routing.go

    				config = fmt.Sprintf(`
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: sidecar
    spec:
      workloadSelector:
        labels:
          app: b
      egress:
      - hosts:
        - "./*"
      ingress:
      - port:
          number: %d
          protocol: HTTP
        defaultEndpoint: %s:%d
    `, ipCase.port.WorkloadPort, ipCase.endpoint, ipCase.port.WorkloadPort)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    //   - Wait for volumes to attach/mount
    //   - Fetch the pull secrets for the pod
    //   - Call the container runtime's SyncPod callback
    //   - Update the traffic shaping for the pod's ingress and egress limits
    //
    // If any step of this workflow errors, the error is returned, and is repeated
    // on the next SyncPod call.
    //
    // This operation writes all events that are dispatched in order to provide
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway_test.go

    					Mode:           networking.ServerTLSSettings_SIMPLE,
    					CredentialName: "ingress-sds-resource-name",
    				},
    			},
    			result: &auth.DownstreamTlsContext{
    				CommonTlsContext: &auth.CommonTlsContext{
    					AlpnProtocols: util.ALPNHttp,
    					TlsCertificateSdsSecretConfigs: []*auth.SdsSecretConfig{
    						{
    							Name:      "kubernetes://ingress-sds-resource-name",
    							SdsConfig: model.SDSAdsConfig,
    						},
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    func loadBalancerStatusStringer(s api.LoadBalancerStatus, wide bool) string {
    	ingress := s.Ingress
    	result := sets.NewString()
    	for i := range ingress {
    		if ingress[i].IP != "" {
    			result.Insert(ingress[i].IP)
    		} else if ingress[i].Hostname != "" {
    			result.Insert(ingress[i].Hostname)
    		}
    	}
    
    	r := strings.Join(result.List(), ",")
    	if !wide && len(r) > loadBalancerWidth {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier_test.go

    				Protocol: v1.ProtocolTCP,
    				NodePort: int32(svcNodePort),
    			}}
    			svc.Status.LoadBalancer.Ingress = []v1.LoadBalancerIngress{
    				{IP: svcLBIP1},
    				{IP: svcLBIP2},
    			}
    			svc.Spec.LoadBalancerSourceRanges = []string{
    				"192.168.0.0/24",
    
    				// Regression test that excess whitespace gets ignored
    				" 203.0.113.0/25",
    			}
    		}),
    	)
    
    	epIP := "10.180.0.1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers_test.go

    		}
    		if !reflect.DeepEqual(test.expected, rows) {
    			t.Errorf("%d mismatch: %s", i, cmp.Diff(test.expected, rows))
    		}
    	}
    }
    
    func TestPrintIngress(t *testing.T) {
    	ingress := networking.Ingress{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:              "test1",
    			CreationTimestamp: metav1.Time{Time: time.Now().Add(time.Duration(-10 * 365 * 24 * time.Hour))},
    		},
    		Spec: networking.IngressSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_test.go

    				TargetPort:  7443,
    			},
    		},
    	}
    
    	ingress := &networking.IstioIngressListener{
    		CaptureMode:     networking.CaptureMode_NONE,
    		DefaultEndpoint: "127.0.0.1:7020",
    		Port: &networking.SidecarPort{
    			Number:   7443,
    			Name:     "grpc-core",
    			Protocol: "GRPC",
    		},
    	}
    	svc := findOrCreateService(instances, ingress, "sidecar", "sidecarns")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top