Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for aGroup (0.08 sec)

  1. pilot/pkg/config/kube/crdclient/client.go

    	schemasByCRDName := map[string]resource.Schema{}
    	for _, s := range schemas.All() {
    		// From the spec: "Its name MUST be in the format <.spec.name>.<.spec.group>."
    		name := fmt.Sprintf("%s.%s", s.Plural(), s.Group())
    		schemasByCRDName[name] = s
    	}
    	out := &Client{
    		domainSuffix:     opts.DomainSuffix,
    		schemas:          schemas,
    		schemasByCRDName: schemasByCRDName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry_test.go

    		},
    		Logging: []*tpb.AccessLogging{
    			emptyEnvoyLogging,
    		},
    	}
    	validTelemetryConfigurationWithTargetRef := &tpb.Telemetry{
    		TargetRef: &v1beta1.PolicyTargetReference{
    			Group: gvk.KubernetesGateway.Group,
    			Kind:  gvk.KubernetesGateway.Kind,
    			Name:  "my-gateway",
    		},
    		Tracing: []*tpb.Tracing{
    			emptyStackDriverTracing,
    		},
    		Metrics: []*tpb.Metrics{
    			prometheusMetrics,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  3. pilot/pkg/model/endpointshards.go

    			}
    			return keys[i].Provider < keys[j].Provider
    		})
    	}
    	return keys
    }
    
    // CopyEndpoints takes a snapshot of all endpoints. As input, it takes a map of port name to number, to allow it to group
    // the results by service port number. This is a bit weird, but lets us efficiently construct the format the caller needs.
    func (es *EndpointShards) CopyEndpoints(portMap map[string]int, ports sets.Set[int]) map[int][]*IstioEndpoint {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top