Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ServiceName (0.2 sec)

  1. pkg/controller/endpointslice/endpointslice_controller_test.go

    	client, esController := newController(t, []string{"node-1"}, time.Duration(0))
    	ns := metav1.NamespaceDefault
    	serviceName := "testing-1"
    	service := createService(t, esController, ns, serviceName)
    	logger, _ := ktesting.NewTestContext(t)
    	err := esController.syncService(logger, fmt.Sprintf("%s/%s", ns, serviceName))
    	assert.Nil(t, err, "Expected no error syncing service")
    
    	gvk := schema.GroupVersionKind{Version: "v1", Kind: "Service"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  2. tests/integration/ambient/baseline_test.go

    					echotest.
    						New(t, apps.All).
    						// TODO eventually we can do this for uncaptured -> l7
    						FromMatch(match.Not(match.ServiceName(echo.NamespacedName{
    							Name:      "uncaptured",
    							Namespace: apps.Namespace,
    						}))).
    						ToMatch(match.ServiceName(echo.NamespacedName{
    							Name:      "uncaptured",
    							Namespace: apps.Namespace,
    						})).
    						Config(cfg.WithParams(param.Params{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier.go

    		name = name[:chainNameBaseLengthMax-3] + "..."
    	}
    	return name
    }
    
    // servicePortChainNameBase returns the base name for a chain for the given ServicePort.
    // This is something like "HASH-namespace/serviceName/protocol/portName", e.g,
    // "ULMVA6XW-ns1/svc1/tcp/p80".
    func servicePortChainNameBase(servicePortName *proxy.ServicePortName, protocol string) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_utils_test.go

    			Selector: &metav1.LabelSelector{
    				MatchLabels: map[string]string{"foo": "bar"},
    			},
    			Replicas:             ptr.To(replicas),
    			Template:             template,
    			VolumeClaimTemplates: claims,
    			ServiceName:          "governingsvc",
    			UpdateStrategy:       apps.StatefulSetUpdateStrategy{Type: apps.RollingUpdateStatefulSetStrategyType},
    			PersistentVolumeClaimRetentionPolicy: &apps.StatefulSetPersistentVolumeClaimRetentionPolicy{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    			return nil, &ConfigError{Reason: InvalidDestination, Message: "port is required in backendRef"}
    		}
    		if strings.Contains(string(to.Name), ".") {
    			return nil, &ConfigError{Reason: InvalidDestination, Message: "serviceName invalid; the name of the Service must be used, not the hostname."}
    		}
    		hostname := fmt.Sprintf("%s.%s.svc.%s", to.Name, namespace, ctx.Domain)
    		if ctx.Context.GetService(hostname, namespace) == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top