Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 881 for naMespace (2.03 sec)

  1. 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)
  2. pkg/test/framework/components/echo/deployment/builder.go

    	// Only the first per-cluster entry for a given config should have a non-nil ref.
    	refs []*echo.Instance
    	// namespaces caches namespaces by their prefix; used for converting Static namespace from configs into actual
    	// namespaces
    	namespaces map[string]namespace.Instance
    	// the set of injection templates for each cluster
    	templates map[string]sets.String
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/api/rbac/v1beta1/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
    - 13.1K bytes
    - Viewed (0)
  5. 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)
  6. pkg/config/analysis/msg/messages.yaml

        level: Info
        description: "A namespace is not enabled for Istio injection."
        template: "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."
        args:
          - name: namespace
            type: string
          - name: namespace2
            type: string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. istioctl/pkg/precheck/precheck.go

    		},
    		{
    			namespace: istioNamespace,
    			group:     "rbac.authorization.k8s.io",
    			version:   "v1",
    			resource:  "roles",
    		},
    		{
    			namespace: istioNamespace,
    			version:   "v1",
    			resource:  "serviceaccounts",
    		},
    		{
    			namespace: istioNamespace,
    			version:   "v1",
    			resource:  "services",
    		},
    		{
    			namespace: istioNamespace,
    			group:     "apps",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. pilot/pkg/credentials/kube/secrets_test.go

    			name:            "tls-mtls-split-crl",
    			namespace:       "default",
    			cert:            "tls-mtls-split-crl-cert",
    			key:             "tls-mtls-split-crl-key",
    			expectedCAError: "found secret, but didn't have expected keys cacert or ca.crt; found: tls.crt, tls.key",
    		},
    		{
    			name:            "generic",
    			namespace:       "wrong-namespace",
    			expectedError:   `secret wrong-namespace/generic not found`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. security/pkg/server/ca/node_auth_test.go

    )
    
    type pod struct {
    	name, namespace, account, node, uid string
    }
    
    func (p pod) Identity() string {
    	return spiffe.Identity{
    		TrustDomain:    "cluster.local",
    		Namespace:      p.namespace,
    		ServiceAccount: p.account,
    	}.String()
    }
    
    func TestSingleClusterNodeAuthorization(t *testing.T) {
    	allowZtunnel := map[types.NamespacedName]struct{}{
    		{Name: "ztunnel", Namespace: "istio-system"}: {},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. tests/integration/helm/upgrade/util.go

    		})
    
    		// setup istio.io/rev=latest for the default-2 namespace
    		_, newClient, newServer := sanitycheck.SetupTrafficTest(t, t, latestRevisionTag)
    		sanitycheck.RunTrafficTestClientServer(t, newClient, newServer)
    
    		// now check that we are compatible with N-1 proxy with N proxy between a client
    		// in default-1 namespace and a server in the default-2 namespace, respectively
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top