Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 259 for nAmespace (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    }
    
    type testNamer struct {
    	namespace string
    	name      string
    }
    
    func (p *testNamer) Namespace(req *http.Request) (namespace string, err error) {
    	return p.namespace, nil
    }
    
    // Name returns the name from the request, and an optional namespace value if this is a namespace
    // scoped call. An error is returned if the name is not available.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  2. pilot/pkg/model/endpointshards.go

    	}
    	e.shardsBySvc[serviceName][namespace] = ep
    	// Clear the cache here to avoid race in cache writes.
    	e.clearCacheForService(serviceName, namespace)
    	return ep, true
    }
    
    func (e *EndpointIndex) DeleteServiceShard(shard ShardKey, serviceName, namespace string, preserveKeys bool) {
    	e.mu.Lock()
    	defer e.mu.Unlock()
    	e.deleteServiceInner(shard, serviceName, namespace, preserveKeys)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. pkg/config/analysis/msg/messages.gen.go

    	// NamespaceNotInjected defines a diag.MessageType for message "NamespaceNotInjected".
    	// Description: A namespace is not enabled for Istio injection.
    	NamespaceNotInjected = diag.NewMessageType(diag.Info, "IST0102", "The namespace is not enabled for Istio injection. Run 'kubectl label namespace %s istio-injection=enabled' to enable it, or 'kubectl label namespace %s istio-injection=disabled' to explicitly mark it as not needing injection.")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  4. operator/pkg/verifier/verifier.go

    		kind := un.GetKind()
    		name := un.GetName()
    		namespace := un.GetNamespace()
    		kinds := resourceKinds(un)
    		if namespace == "" {
    			namespace = v.istioNamespace
    		}
    		switch kind {
    		case "Deployment":
    			deployment := &appsv1.Deployment{}
    			err = info.Client.
    				Get().
    				Resource(kinds).
    				Namespace(namespace).
    				Name(name).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. pkg/config/model.go

    	UID string `json:"uid,omitempty"`
    
    	// Name is a unique immutable identifier in a namespace
    	Name string `json:"name,omitempty"`
    
    	// Namespace defines the space for names (optional for some types),
    	// applications may choose to use namespaces for a variety of purposes
    	// (security domains, fault domains, organizational domains)
    	Namespace string `json:"namespace,omitempty"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/controller.go

    	}
    	c.networkManager = initNetworkManager(c, options)
    
    	c.namespaces = kclient.NewFiltered[*v1.Namespace](kubeClient, kclient.Filter{ObjectFilter: kubeClient.ObjectFilter()})
    
    	if c.opts.SystemNamespace != "" {
    		registerHandlers[*v1.Namespace](
    			c,
    			c.namespaces,
    			"Namespaces",
    			func(old *v1.Namespace, cur *v1.Namespace, event model.Event) error {
    				if cur.Name == c.opts.SystemNamespace {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/files/waypoint.yaml

    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: {{.ServiceAccount | quote}}
      namespace: {{.Namespace | quote}}
      annotations:
        {{- toJsonMap (omit .InfrastructureAnnotations "kubectl.kubernetes.io/last-applied-configuration" "gateway.istio.io/name-override" "gateway.istio.io/service-account" "gateway.istio.io/controller-version") | nindent 4 }}
      labels:
        {{- toJsonMap
          .InfrastructureLabels
          (strdict
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. pkg/volume/projected/projected.go

    			secretapi, err := s.plugin.getSecret(s.pod.Namespace, source.Secret.Name)
    			if err != nil {
    				if !(errors.IsNotFound(err) && optional) {
    					klog.Errorf("Couldn't get secret %v/%v: %v", s.pod.Namespace, source.Secret.Name, err)
    					errlist = append(errlist, err)
    					continue
    				}
    				secretapi = &v1.Secret{
    					ObjectMeta: metav1.ObjectMeta{
    						Namespace: s.pod.Namespace,
    						Name:      source.Secret.Name,
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. pilot/pkg/model/telemetry.go

    	Name      string         `json:"name"`
    	Namespace string         `json:"namespace"`
    	Spec      *tpb.Telemetry `json:"spec"`
    }
    
    func (t *Telemetry) NamespacedName() types.NamespacedName {
    	return types.NamespacedName{Name: t.Name, Namespace: t.Namespace}
    }
    
    // Telemetries organizes Telemetry configuration by namespace.
    type Telemetries struct {
    	// Maps from namespace to the Telemetry configs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  10. pkg/kube/inject/inject.go

    	}
    
    	name := metadata.Name
    	if name == "" {
    		name = deploymentMetadata.Name
    	}
    	namespace := metadata.Namespace
    	if namespace == "" {
    		namespace = deploymentMetadata.Namespace
    	}
    
    	var fullName string
    	if deploymentMetadata.Namespace != "" {
    		fullName = fmt.Sprintf("%s/%s", deploymentMetadata.Namespace, name)
    	} else {
    		fullName = name
    	}
    
    	kind := typeMeta.Kind
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (1)
Back to top