Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,489 for nameslice (0.22 sec)

  1. staging/src/k8s.io/api/rbac/v1alpha1/types.go

    // RoleBinding references a role, but does not contain it.  It can reference a Role in the same namespace or a ClusterRole in the global namespace.
    // It adds who information via Subjects and namespace information by which namespace it exists in.  RoleBindings in a given
    // namespace only have effect in that namespace.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBinding, and will no longer be served in v1.22.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. pkg/config/analysis/local/istiod_analyze.go

    		// message doesn't have an origin (meaning we can't determine the
    		// namespace). Also kept are cluster-level resources where the namespace is
    		// the empty string. If no such limit is specified, keep them all.
    		if len(namespaces) > 0 && m.Resource != nil && m.Resource.Origin.Namespace() != "" {
    			if !nsNames.Contains(m.Resource.Origin.Namespace().String()) {
    				continue FilterMessages
    			}
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/graph_builder.go

    			ownerIsNamespaced := len(ownerNode.identity.Namespace) > 0
    			if ownerIsNamespaced && ownerNode.identity.Namespace != n.identity.Namespace {
    				if ownerNode.isObserved() {
    					// The owner node has been observed via an informer
    					// the dependent's namespace doesn't match the observed owner's namespace, this is definitely wrong.
    					// cluster-scoped owners can be referenced as an owner from any namespace or cluster-scoped object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/request/requestinfo.go

    // /api/{version}/namespaces
    // /api/{version}/namespaces/{namespace}
    // /api/{version}/namespaces/{namespace}/{resource}
    // /api/{version}/namespaces/{namespace}/{resource}/{resourceName}
    // /api/{version}/{resource}
    // /api/{version}/{resource}/{resourceName}
    //
    // Special verbs without subresources:
    // /api/{version}/proxy/{resource}/{resourceName}
    // /api/{version}/proxy/namespaces/{namespace}/{resource}/{resourceName}
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 13:24:29 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. istioctl/pkg/dashboard/dashboard.go

    	for _, ns := range []string{ctx.IstioNamespace(), ctx.NamespaceOrDefault(ctx.Namespace())} {
    		pl, err := client.PodsForSelector(context.TODO(), ns, labelSelector)
    		if err != nil {
    			continue
    		}
    		if len(pl.Items) > 0 {
    			return pl.Items[0].Name, pl.Items[0].Namespace, nil
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  6. 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)
  7. pilot/pkg/config/kube/ingress/conversion.go

    			Name:     fmt.Sprintf("http-80-ingress-%s-%s", ingress.Name, ingress.Namespace),
    		},
    		Hosts: []string{"*"},
    	})
    
    	gatewayConfig := config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.Gateway,
    			Name:             ingress.Name + "-" + constants.IstioIngressGatewayName + "-" + ingress.Namespace,
    			Namespace:        IngressNamespace,
    			Domain:           domainSuffix,
    		},
    		Spec: gateway,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. src/mdo/writer-stax.vm

        //--------------------------/
    
        /**
         * Default namespace.
         */
        private static final String NAMESPACE = "${namespace}";
    
        /**
         * Default schemaLocation.
         */
        private static final String SCHEMA_LOCATION = "${schemaLocation}";
    
        /**
         * Field namespace.
         */
        private String namespace = NAMESPACE;
    
        /**
         * Field schemaLocation.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  9. istioctl/pkg/workload/workload_test.go

    		{
    			description:       "Invalid command args - missing service namespace",
    			args:              strings.Split("group create --name foo", " "),
    			expectedException: true,
    			expectedOutput:    "Error: expecting a workload namespace\n",
    		},
    		{
    			description:       "valid case - minimal flags, infer defaults",
    			args:              strings.Split("group create --name foo --namespace bar", " "),
    			expectedException: false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. pilot/pkg/autoregistration/controller.go

    	if proxy.VerifiedIdentity == nil {
    		return fmt.Errorf("registration of WorkloadEntry requires a verified identity")
    	}
    	if proxy.VerifiedIdentity.Namespace != wle.Namespace {
    		return fmt.Errorf("registration of WorkloadEntry namespace mismatch: %q vs %q", proxy.VerifiedIdentity.Namespace, wle.Namespace)
    	}
    	spec := wle.Spec.(*v1alpha3.WorkloadEntry)
    	if spec.ServiceAccount != "" && proxy.VerifiedIdentity.ServiceAccount != spec.ServiceAccount {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
Back to top