Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,134 for nameslice (0.32 sec)

  1. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller_test.go

    			tc.endpoints.Name = endpointsName
    			tc.endpoints.Namespace = namespace
    			esController.endpointsStore.Add(tc.endpoints)
    			if tc.service != nil {
    				tc.service.Name = endpointsName
    				tc.service.Namespace = namespace
    				esController.serviceStore.Add(tc.service)
    			}
    
    			for _, epSlice := range tc.endpointSlices {
    				epSlice.Namespace = namespace
    				esController.endpointSliceStore.Add(epSlice)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/common/deployment/echos.go

    		c.Namespaces = make([]namespace.Getter, c.NamespaceCount)
    		if c.NamespaceCount == 1 {
    			// If only using a single namespace, preserve the "echo" prefix.
    			g.Go(func() error {
    				ns, err := namespace.New(ctx, namespace.Config{
    					Inject: !ctx.Settings().AmbientEverywhere,
    					Prefix: "echo",
    					Labels: nsLabels,
    				})
    				if err != nil {
    					return err
    				}
    				c.Namespaces[0] = namespace.Future(&ns)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. pkg/kube/inject/webhook_test.go

    			meta: metav1.ObjectMeta{
    				Name:        "no-policy",
    				Namespace:   "test-namespace",
    				Annotations: map[string]string{},
    			},
    			want: true,
    		},
    		{
    			config: &Config{
    				Policy: InjectionPolicyEnabled,
    			},
    			podSpec: podSpec,
    			meta: metav1.ObjectMeta{
    				Name:      "default-policy",
    				Namespace: "test-namespace",
    			},
    			want: true,
    		},
    		{
    			config: &Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 39K bytes
    - Viewed (1)
  4. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    	framework.NewTest(t).
    		RequireIstioVersion("1.11").
    		Run(func(t framework.TestContext) {
    			serviceA = match.ServiceName(echo.NamespacedName{Name: common.ServiceA, Namespace: echos.Namespace})
    			serviceB = match.ServiceName(echo.NamespacedName{Name: common.ServiceB, Namespace: echos.Namespace})
    			// Don't export service B in any cluster. All requests should stay in-cluster.
    			for _, ht := range hostTypes {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. pkg/config/validation/agent/extensionprovider_test.go

    				Service: "collector.namespace.svc",
    				Port:    4317,
    			},
    			valid: true,
    		},
    		{
    			name: "service with namespace",
    			provider: &meshconfig.MeshConfig_ExtensionProvider_OpenTelemetryTracingProvider{
    				Service: "namespace/collector.namespace.svc",
    				Port:    4317,
    			},
    			valid: true,
    		},
    		{
    			name: "service with invalid namespace",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json

          "uid": "Kubernetes//Pod/bookinfo/namespace-istio-waypoint-d94944bf6-z89g2",
          "name": "namespace-istio-waypoint-d94944bf6-z89g2",
          "namespace": "bookinfo",
          "trustDomain": "cluster.local",
          "serviceAccount": "namespace-istio-waypoint",
          "workloadName": "namespace-istio-waypoint",
          "workloadType": "deployment",
          "canonicalName": "namespace-istio-waypoint",
          "canonicalRevision": "latest",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/node/graph.go

    // namedVertex implements graph.Node and remembers the type, namespace, and name of its related API object
    type namedVertex struct {
    	name       string
    	namespace  string
    	id         int
    	vertexType vertexType
    }
    
    func newNamedVertex(vertexType vertexType, namespace, name string, id int) *namedVertex {
    	return &namedVertex{
    		vertexType: vertexType,
    		name:       name,
    		namespace:  namespace,
    		id:         id,
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/config.go

    )
    
    // Config defines the options for creating an Echo component.
    // nolint: maligned
    type Config struct {
    	// Namespace of the echo Instance. If not provided, a default namespace "apps" is used.
    	Namespace namespace.Instance
    
    	// DefaultHostHeader overrides the default Host header for calls (`service.namespace.svc.cluster.local`)
    	DefaultHostHeader string
    
    	// Domain of the echo Instance. If not provided, a default will be selected.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. pkg/serviceaccount/claims_test.go

    	sa := core.ServiceAccount{
    		ObjectMeta: metav1.ObjectMeta{
    			Namespace: "myns",
    			Name:      "mysvcacct",
    			UID:       "mysvcacct-uid",
    		},
    	}
    	pod := &core.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Namespace: "myns",
    			Name:      "mypod",
    			UID:       "mypod-uid",
    		},
    	}
    	sec := &core.Secret{
    		ObjectMeta: metav1.ObjectMeta{
    			Namespace: "myns",
    			Name:      "mysecret",
    			UID:       "mysecret-uid",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. pkg/controller/serviceaccount/tokens_controller.go

    		retry, err = e.deleteTokens(sa)
    		if err != nil {
    			logger.Error(err, "Error deleting serviceaccount tokens", "namespace", saInfo.namespace, "serviceaccount", saInfo.name)
    		}
    	}
    }
    
    func (e *TokensController) syncSecret(ctx context.Context) {
    	key, quit := e.syncSecretQueue.Get()
    	if quit {
    		return
    	}
    	defer e.syncSecretQueue.Done(key)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 20.5K bytes
    - Viewed (0)
Back to top