Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 638 for nameslice (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    	}
    
    	// try fetching the namespace-defined waypoint
    	namespace := ptr.OrEmpty[*v1.Namespace](krt.FetchOne[*v1.Namespace](ctx, Namespaces, krt.FilterKey(o.Namespace)))
    	// this probably should never be nil. How would o exist in a namespace we know nothing about? maybe edge case of starting the controller or ns delete?
    	if namespace != nil {
    		// toss isNone, we don't need to know /why/ we got nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. pkg/kube/kclient/client.go

    }
    
    // keyFunc is the internal API key function that returns "namespace"/"name" or
    // "name" if "namespace" is empty
    func keyFunc(name, namespace string) string {
    	if len(namespace) == 0 {
    		return name
    	}
    	return namespace + "/" + name
    }
    
    func ToOpts(c kube.Client, gvr schema.GroupVersionResource, filter Filter) kubetypes.InformerOptions {
    	ns := filter.Namespace
    	if !istiogvr.IsClusterScoped(gvr) && ns == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. pkg/proxy/config/config_test.go

    	h.lock.Lock()
    	defer h.lock.Unlock()
    	namespacedName := types.NamespacedName{Namespace: service.Namespace, Name: service.Name}
    	h.state[namespacedName] = service
    	h.sendServices()
    }
    
    func (h *ServiceHandlerMock) OnServiceUpdate(oldService, service *v1.Service) {
    	h.lock.Lock()
    	defer h.lock.Unlock()
    	namespacedName := types.NamespacedName{Namespace: service.Namespace, Name: service.Name}
    	h.state[namespacedName] = service
    	h.sendServices()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top