Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 211 for Tables (0.14 sec)

  1. pilot/pkg/model/telemetry_logging_test.go

    			assert.Equal(t, tc.expected, got)
    		})
    	}
    }
    
    func TestAccessLogging(t *testing.T) {
    	labels := map[string]string{"app": "test"}
    	sidecar := &Proxy{
    		ConfigNamespace: "default",
    		Labels:          labels,
    		Metadata:        &NodeMetadata{Labels: labels},
    	}
    	prometheus := &tpb.Telemetry{
    		Metrics: []*tpb.Metrics{
    			{
    				Providers: []*tpb.ProviderRef{
    					{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    		Spec:   gatewaySpec,
    		Status: k8sbeta.GatewayStatus{},
    	}
    	labels := make(map[string]string, 2)
    	if trafficType != "" && validTrafficTypes.Contains(trafficType) {
    		labels[constants.AmbientWaypointForTrafficTypeLabel] = trafficType
    	} else {
    		labels[constants.AmbientWaypointForTrafficTypeLabel] = constants.ServiceTraffic
    	}
    	gateway.Labels = labels
    
    	if ready {
    		addrType := k8sbeta.IPAddressType
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/sidecar_template.golden.yaml

                service.istio.io/canonical-revision: {{ index .ObjectMeta.Labels `service.istio.io/canonical-revision` | default (index .ObjectMeta.Labels `app.kubernetes.io/version`) | default (index .ObjectMeta.Labels `version`) | default "latest"  | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 86.9K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    				if len(endpoints[i].Labels) == len(endpoints[j].Labels) {
    					iLabels := labelsToSlice(endpoints[i].Labels)
    					jLabels := labelsToSlice(endpoints[j].Labels)
    					for k := range iLabels {
    						if iLabels[k] < jLabels[k] {
    							return true
    						}
    					}
    				}
    				return len(endpoints[i].Labels) < len(endpoints[j].Labels)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inputs/hello.yaml.4.template.gen.yaml

            service.istio.io/canonical-revision: {{ index .ObjectMeta.Labels `service.istio.io/canonical-revision` | default (index .ObjectMeta.Labels `app.kubernetes.io/version`) | default (index .ObjectMeta.Labels `version`) | default "latest"  | quote...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inputs/merge-probers.yaml.43.template.gen.yaml

            service.istio.io/canonical-revision: {{ index .ObjectMeta.Labels `service.istio.io/canonical-revision` | default (index .ObjectMeta.Labels `app.kubernetes.io/version`) | default (index .ObjectMeta.Labels `version`) | default "latest"  | quote...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inputs/default.template.gen.yaml

            service.istio.io/canonical-revision: {{ index .ObjectMeta.Labels `service.istio.io/canonical-revision` | default (index .ObjectMeta.Labels `app.kubernetes.io/version`) | default (index .ObjectMeta.Labels `version`) | default "latest"  | quote...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    	var out []*IstioEndpoint
    	if instances, exists := ps.ServiceIndex.instancesByPort[svc.Key()][port]; exists {
    		// Use cached version of instances by port when labels are empty.
    		if len(labels) == 0 {
    			return instances
    		}
    		// If there are labels,	we will filter instances by pod labels.
    		for _, instance := range instances {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		}
    	}
    
    	getAttrs := func(obj runtime.Object) (labels.Set, fields.Set, error) {
    		pod, ok := obj.(*example.Pod)
    		if !ok {
    			return nil, nil, fmt.Errorf("invalid object")
    		}
    		return labels.Set(pod.Labels), nil, nil
    	}
    	predicate := storage.SelectionPredicate{
    		Label:    labels.Set{"even": "true"}.AsSelector(),
    		GetAttrs: getAttrs,
    		Limit:    4,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  10. common/scripts/metallb-native.yaml

    apiVersion: v1
    kind: ServiceAccount
    metadata:
      labels:
        app: metallb
      name: controller
      namespace: metallb-system
    ---
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      labels:
        app: metallb
      name: speaker
      namespace: metallb-system
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: Role
    metadata:
      labels:
        app: metallb
      name: controller
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top