Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 568 for endpoints1 (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. manifests/charts/base/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)
  6. pkg/registry/registrytest/endpoint.go

    	for ix := range e.Endpoints.Items {
    		if e.Endpoints.Items[ix].Name == endpoints.Name {
    			e.Endpoints.Items[ix] = *endpoints
    		}
    	}
    	e.Endpoints.Items = append(e.Endpoints.Items, *endpoints)
    	return endpoints, false, nil
    }
    
    func (e *EndpointRegistry) Delete(ctx context.Context, name string, deleteValidation rest.ValidateObjectFunc, options *metav1.DeleteOptions) (runtime.Object, bool, error) {
    	// TODO: support namespaces in this mock
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 16:50:16 UTC 2019
    - 4K bytes
    - Viewed (0)
  7. pilot/test/xdstest/endpoints.go

    func CompareEndpointsOrFail(t *testing.T, cluster string, got []*endpointv3.LocalityLbEndpoints, want []LocLbEpInfo) {
    	if err := CompareEndpoints(cluster, got, want); err != nil {
    		t.Error(err)
    	}
    }
    
    func CompareEndpoints(cluster string, got []*endpointv3.LocalityLbEndpoints, want []LocLbEpInfo) error {
    	if len(got) != len(want) {
    		return fmt.Errorf("unexpected number of filtered endpoints for %s: got %v, want %v", cluster, len(got), len(want))
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. istioctl/pkg/util/configdump/endpoint.go

    )
    
    // GetEndpointsConfigDump retrieves the listener config dump from the ConfigDump
    func (w *Wrapper) GetEndpointsConfigDump() (*admin.EndpointsConfigDump, error) {
    	endpointsDumpAny, err := w.getSection(endpoints)
    	if err != nil {
    		return nil, nil
    	}
    	endpointsDump := &admin.EndpointsConfigDump{}
    	err = endpointsDumpAny.UnmarshalTo(endpointsDump)
    	if err != nil {
    		return nil, err
    	}
    	return endpointsDump, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 14:14:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. pkg/proxy/endpoint.go

    	"k8s.io/apimachinery/pkg/util/sets"
    )
    
    // Endpoint in an interface which abstracts information about an endpoint.
    type Endpoint interface {
    	// String returns endpoint string.  An example format can be: `IP:Port`.
    	// We take the returned value as ServiceEndpoint.Endpoint.
    	String() string
    	// IP returns IP part of the endpoint.
    	IP() string
    	// Port returns the Port part of the endpoint.
    	Port() int
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:38:25 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. releasenotes/notes/endpoint-slice.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
      **Updated** the control plane to read `EndpointSlice` insead of `Endpoints`
      for service discovery for Kubernetes 1.21 or later. To switch back to the old
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 12 18:34:02 UTC 2021
    - 322 bytes
    - Viewed (0)
Back to top