Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 871 for networkingv1 (0.36 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/networking.k8s.io.v1alpha1.ServiceCIDR.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 490 bytes
    - Viewed (0)
  2. pilot/pkg/xds/endpoints/endpoint_builder_test.go

    			expectedLabels: nil,
    		},
    		{
    			name: "simple",
    			dr: &config.Config{
    				Spec: &networking.DestinationRule{
    					TrafficPolicy: &networking.TrafficPolicy{
    						OutlierDetection: &networking.OutlierDetection{
    							ConsecutiveErrors: 5,
    						},
    						LoadBalancer: &networking.LoadBalancerSettings{
    							LocalityLbSetting: &networking.LocalityLoadBalancerSetting{
    								FailoverPriority: []string{
    									"a",
    									"b",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. pkg/apis/extensions/v1beta1/conversion.go

    	if err := autoConvert_v1beta1_NetworkPolicySpec_To_networking_NetworkPolicySpec(in, out, s); err != nil {
    		return err
    	}
    	if out.Ingress == nil {
    		// Produce a zero-length non-nil slice for compatibility with previous manual conversion.
    		out.Ingress = make([]networking.NetworkPolicyIngressRule, 0)
    	}
    	if out.Egress == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/filterchain_options.go

    			TLS:                  true,
    		},
    		{
    			// Plain TLS
    			TransportProtocol: xdsfilters.TLSTransportProtocol,
    			Protocol:          networking.ListenerProtocolTCP,
    		},
    		{
    			// Plaintext
    			Protocol:          networking.ListenerProtocolTCP,
    			TransportProtocol: xdsfilters.RawBufferTransportProtocol,
    		},
    	}
    
    	inboundStrictFilterChainMatchOptions = []FilterChainMatchOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. pkg/apis/networking/v1beta1/conversion_test.go

    					ServiceName: "test-backend",
    					ServicePort: intstr.FromInt32(8080),
    				},
    			},
    			internal: networking.IngressSpec{
    				DefaultBackend: &networking.IngressBackend{
    					Service: &networking.IngressServiceBackend{
    						Name: "test-backend",
    						Port: networking.ServiceBackendPort{
    							Name:   "",
    							Number: 8080,
    						},
    					},
    				},
    			},
    		},
    		"service-named-port": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/retry/retry_test.go

    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/networking/core/route/retry"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    )
    
    func TestRetry(t *testing.T) {
    	testCases := []struct {
    		name       string
    		route      *networking.HTTPRoute
    		assertFunc func(g *WithT, policy *envoyroute.RetryPolicy)
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway.yaml

    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: testing-gateway-01-test-01
      namespace: istio-system
    spec:
      selector:
        istio: ingressgateway
      servers:
      - hosts:
        - testing-01.com
        port:
          name: http
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: testing-service-01-test-01
      namespace: default
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  8. pkg/registry/networking/servicecidr/strategy.go

    	newServiceCIDR := obj.(*networking.ServiceCIDR)
    	oldServiceCIDR := old.(*networking.ServiceCIDR)
    
    	_, _ = newServiceCIDR, oldServiceCIDR
    }
    
    // Validate validates a new ServiceCIDR.
    func (serviceCIDRStrategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList {
    	cidrConfig := obj.(*networking.ServiceCIDR)
    	err := validation.ValidateServiceCIDR(cidrConfig)
    	return err
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. pilot/pkg/model/gateway_test.go

    				},
    				{
    					Hosts: []string{"a.apps.svc.cluster.local", "b.apps.svc.cluster.local"},
    					Port:  &networking.Port{Name: "tls", Number: 15443, Protocol: "TLS"},
    					Tls:   &networking.ServerTLSSettings{Mode: networking.ServerTLSSettings_AUTO_PASSTHROUGH},
    				},
    			},
    		},
    	}
    	svc := &Service{
    		Attributes: ServiceAttributes{
    			Labels: map[string]string{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. pkg/registry/networking/ingress/storage/storage_test.go

    func toHTTPIngressPaths(pathMap map[string]string) []networking.HTTPIngressPath {
    	httpPaths := []networking.HTTPIngressPath{}
    	for path, backend := range pathMap {
    		httpPaths = append(httpPaths, networking.HTTPIngressPath{
    			Path:     path,
    			PathType: &defaultPathType,
    			Backend: networking.IngressBackend{
    				Service: &networking.IngressServiceBackend{
    					Name: backend,
    					Port: networking.ServiceBackendPort{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 09:01:21 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top