Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,299 for endpoints1 (0.2 sec)

  1. pkg/controlplane/reconcilers/endpointsadapter_test.go

    			expectedResult: endpoints2,
    			expectUpdate:   []runtime.Object{endpoints2, epSlice2},
    			initialState:   []runtime.Object{endpoints2, epSlice1},
    			namespaceParam: "testing",
    			endpointsParam: endpoints2,
    		},
    		"endpointslice-correct-endpoints-wrong": {
    			expectedError:  nil,
    			expectedResult: endpoints2,
    			expectUpdate:   []runtime.Object{endpoints2},
    			initialState:   []runtime.Object{endpoints1, epSlice2},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. pkg/proxy/config/config_test.go

    		Endpoints: []discoveryv1.Endpoint{{
    			Addresses: []string{"7.7.7.7"},
    		}},
    		Ports: []discoveryv1.EndpointPort{{Port: ptr.To[int32](80)}},
    	}
    	fakeWatch.Modify(endpoints1v2)
    	endpoints = []*discoveryv1.EndpointSlice{endpoints2, endpoints1v2, endpoints3}
    	handler.ValidateEndpointSlices(t, endpoints)
    	handler2.ValidateEndpointSlices(t, endpoints)
    
    	// Remove "bar" endpoints
    	fakeWatch.Delete(endpoints2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/composition_test.go

    			expression:     "variables.name == 'endpoints1'",
    			expectedResult: true,
    		},
    		{
    			name: "early compile error",
    			variables: []NamedExpressionAccessor{
    				&testVariable{
    					name:       "name",
    					expression: "1 == '1'", // won't compile
    				},
    			},
    			attributes:           endpointCreateAttributes(),
    			expression:           "variables.name == 'endpoints1'",
    			expectErr:            true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. pkg/proxy/config/api_test.go

    	go endpointsliceConfig.Run(stopCh)
    
    	// Add the first endpoints
    	fakeWatch.Add(endpoints1v1)
    	handler.ValidateEndpointSlices(t, []*discoveryv1.EndpointSlice{endpoints1v1})
    
    	// Add another endpoints
    	fakeWatch.Add(endpoints2)
    	handler.ValidateEndpointSlices(t, []*discoveryv1.EndpointSlice{endpoints1v1, endpoints2})
    
    	// Modify endpoints1
    	fakeWatch.Modify(endpoints1v2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    	if !isDelete {
    		if object == nil {
    			object = &corev1.Endpoints{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "endpoints1",
    				},
    				Subsets: []corev1.EndpointSubset{
    					{
    						Addresses: []corev1.EndpointAddress{{IP: "127.0.0.0"}},
    					},
    				},
    			}
    		}
    	} else {
    		object = nil
    		oldObject = &corev1.Endpoints{
    			Subsets: []corev1.EndpointSubset{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  6. pilot/pkg/xds/eds_test.go

    	verifyLocalityPriorities(asdc2Locality, endpoints2["outbound|80||locality.cluster.local"].GetEndpoints(), t)
    
    	// No outlier detection specified for this cluster, so we shouldn't apply priority.
    	verifyNoLocalityPriorities(endpoints1["outbound|80||locality-no-outlier-detection.cluster.local"].GetEndpoints(), t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/envoy/configdump/endpoint.go

    		if epCount != 0 {
    			endpoints = append(endpoints, cla)
    		}
    	}
    	for _, e := range dump.GetStaticEndpointConfigs() {
    		cla, epCount := retrieveEndpoint(e.EndpointConfig, filter)
    		if epCount != 0 {
    			endpoints = append(endpoints, cla)
    		}
    	}
    	sort.Slice(endpoints, func(i, j int) bool {
    		iDirection, iSubset, iName, iPort := safelyParseSubsetKey(endpoints[i].ClusterName)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. cmd/endpoint-ellipses.go

    }
    
    // Returns all the expanded endpoints, each argument is expanded separately.
    func (s *endpointSet) getEndpoints() (endpoints []string) {
    	if len(s.endpoints) != 0 {
    		return s.endpoints
    	}
    	for _, argPattern := range s.argPatterns {
    		for _, lbls := range argPattern.Expand() {
    			endpoints = append(endpoints, strings.Join(lbls, ""))
    		}
    	}
    	s.endpoints = endpoints
    	return endpoints
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/core/v1/endpoints.go

    	return extractEndpoints(endpoints, fieldManager, "status")
    }
    
    func extractEndpoints(endpoints *apicorev1.Endpoints, fieldManager string, subresource string) (*EndpointsApplyConfiguration, error) {
    	b := &EndpointsApplyConfiguration{}
    	err := managedfields.ExtractInto(endpoints, internal.Parser().Type("io.k8s.api.core.v1.Endpoints"), fieldManager, b, subresource)
    	if err != nil {
    		return nil, err
    	}
    	b.WithName(endpoints.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 11.7K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/templates/endpoints.yaml

    {{- if regexMatch "^([0-9]*\\.){3}[0-9]*$" .Values.global.remotePilotAddress }}
    # if the remotePilotAddress is an IP addr
    apiVersion: v1
    kind: Endpoints
    metadata:
      {{- if .Values.pilot.enabled }}
      name: istiod{{- if .Values.revision }}-{{ .Values.revision}}{{- end }}-remote
      {{- else }}
      name: istiod{{- if .Values.revision }}-{{ .Values.revision}}{{- end }}
      {{- end }}
      namespace: {{ .Release.Namespace }}
    subsets:
    - addresses:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:40 UTC 2024
    - 620 bytes
    - Viewed (0)
Back to top