Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for ServiceName (0.36 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/winkernel/proxier.go

    				klog.V(3).InfoS("Cleanup existing ", "endpointInfo", hnsEndpoints, "serviceName", svcName)
    				svcInfo.deleteLoadBalancerPolicy(proxier.mapStaleLoadbalancers)
    			}
    			klog.ErrorS(nil, "Endpoint information not available for service, not applying any policy", "serviceName", svcName)
    			continue
    		}
    
    		klog.V(4).InfoS("Trying to apply Policies for service", "serviceInfo", svcInfo)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  4. tests/integration/security/authz_test.go

    func TestAuthz_JWT(t *testing.T) {
    	framework.NewTest(t).
    		Label(label.IPv4). // https://github.com/istio/istio/issues/35835
    		Run(func(t framework.TestContext) {
    			from := apps.Ns1.A
    			fromMatch := match.ServiceName(from.NamespacedName())
    			toMatch := match.Not(fromMatch)
    			to := toMatch.GetServiceMatches(apps.Ns1.All)
    			fromAndTo := to.Instances().Append(from)
    
    			config.New(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1/types.go

    	ServiceName string `json:"serviceName" protobuf:"bytes,5,opt,name=serviceName"`
    
    	// podManagementPolicy controls how pods are created during initial scale up,
    	// when replacing pods on nodes, or when scaling down. The default policy is
    	// `OrderedReady`, where pods are created in increasing order (pod-0, then
    	// pod-1, etc) and the controller will wait until each pod is ready before
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceregistry_test.go

    func createEndpointSlice(t *testing.T, c kubernetes.Interface, name, serviceName, namespace string, ports []v1.EndpointPort, addrs []string) {
    	createEndpointSliceWithType(t, c, name, serviceName, namespace, ports, addrs, discovery.AddressTypeIPv4)
    }
    
    // nolint: unparam
    func createEndpointSliceWithType(t *testing.T, c kubernetes.Interface, name, serviceName, namespace string,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  7. pkg/controller/endpoint/endpoints_controller_test.go

    }
    
    func TestSyncServiceExternalNameType(t *testing.T) {
    	serviceName := "testing-1"
    	namespace := metav1.NamespaceDefault
    
    	testCases := []struct {
    		desc    string
    		service *v1.Service
    	}{
    		{
    			desc: "External name with selector and ports should not receive endpoints",
    			service: &v1.Service{
    				ObjectMeta: metav1.ObjectMeta{Name: serviceName, Namespace: namespace},
    				Spec: v1.ServiceSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	sa.raw.Nfc_protocol = sa.NFCProtocol
    	sa.raw.Dsap = sa.DestinationSAP
    	sa.raw.Ssap = sa.SourceSAP
    	if len(sa.ServiceName) > len(sa.raw.Service_name) {
    		return nil, 0, EINVAL
    	}
    	copy(sa.raw.Service_name[:], sa.ServiceName)
    	sa.raw.SetServiceNameLen(len(sa.ServiceName))
    	return unsafe.Pointer(&sa.raw), SizeofSockaddrNFCLLCP, nil
    }
    
    var socketProtocol = func(fd int) (int, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
Back to top