Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 721 for serviceAccounts (0.51 sec)

  1. pkg/kube/rpc_creds_test.go

    )
    
    func Test_tokenSupplier_GetRequestMetadata(t *testing.T) {
    	ctx := context.Background()
    	cli := NewFakeClient()
    	clientset := cli.Kube().(*fake.Clientset)
    	clientset.PrependReactor("create", "serviceaccounts",
    		func(action clienttesting.Action) (handled bool, ret runtime.Object, err error) {
    			act, ok := action.(clienttesting.CreateActionImpl)
    			if !ok {
    				return false, nil, nil
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 16 06:24:33 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. pkg/controlplane/storageversionhashdata/data.go

    	"v1/podtemplates":           "LIXB2x4IFpk=",
    	"v1/replicationcontrollers": "Jond2If31h0=",
    	"v1/resourcequotas":         "8uhSgffRX6w=",
    	"v1/secrets":                "S6u1pOWzb84=",
    	"v1/serviceaccounts":        "pbx9ZvyFpBE=",
    	"v1/services":               "0/CO1lhkEBI=",
    	"autoscaling/v1/horizontalpodautoscalers": "qwQve8ut294=",
    	"autoscaling/v2/horizontalpodautoscalers": "qwQve8ut294=",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/operator/output/operator-init.yaml

      - pods
      - pods/proxy
      - pods/portforward
      - persistentvolumeclaims
      - secrets
      - services
      - serviceaccounts
      - resourcequotas
      verbs:
      - '*'
    ---
    kind: ClusterRoleBinding
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
      name: istio-operator
    subjects:
    - kind: ServiceAccount
      name: istio-operator
      namespace: operator-test-namespace
    roleRef:
      kind: ClusterRole
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. OWNERS_ALIASES

        - deads2k
        - liggitt
        - tallclair
      sig-auth-policy-reviewers:
        - deads2k
        - liggitt
        - tallclair
        - krmayankk
      sig-auth-serviceaccounts-approvers:
        - deads2k
        - enj
        - liggitt
        - mikedanese
      sig-auth-serviceaccounts-reviewers:
        - deads2k
        - enj
        - liggitt
        - mikedanese
      # SIG Release
      release-engineering-approvers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. istioctl/pkg/completion/completion.go

    }
    
    func getServiceAccountsName(kubeClient kube.CLIClient, toComplete, ns string) ([]string, error) {
    	ctx := context.Background()
    	saList, err := kubeClient.Kube().CoreV1().ServiceAccounts(ns).List(ctx, metav1.ListOptions{})
    	if err != nil {
    		return nil, err
    	}
    
    	var saNameList []string
    	for _, sa := range saList.Items {
    		if toComplete == "" || strings.HasPrefix(sa.Name, toComplete) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/templates/clusterrole.yaml

        verbs: [ "get", "watch", "list", "update", "patch", "create", "delete" ]
        resources: [ "services" ]
      - apiGroups: [""]
        verbs: [ "get", "watch", "list", "update", "patch", "create", "delete" ]
        resources: [ "serviceaccounts"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. pkg/test/framework/components/istio/ca.go

    }
    
    func CreateCertificate(t framework.TestContext, i Instance, serviceAccount, namespace string) (Cert, error) {
    	c := t.Clusters().Default()
    	rootCert, err := FetchRootCert(c.Kube())
    	if err != nil {
    		return Cert{}, fmt.Errorf("failed to fetch root cert: %v", err)
    	}
    
    	token, err := GetServiceAccountToken(c.Kube(), "istio-ca", namespace, serviceAccount)
    	if err != nil {
    		return Cert{}, err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. pkg/kube/rpc_creds.go

    	tokenNamespace, tokenServiceAccount string, audiences []string, expirationSeconds int64,
    ) (*authenticationv1.TokenRequest, error) {
    	return client.Kube().CoreV1().ServiceAccounts(tokenNamespace).CreateToken(ctx, tokenServiceAccount,
    		&authenticationv1.TokenRequest{
    			Spec: authenticationv1.TokenRequestSpec{
    				Audiences:         audiences,
    				ExpirationSeconds: &expirationSeconds,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. manifests/charts/istio-cni/values.yaml

        logging:
          level: info
    
        logAsJson: false
    
        # ImagePullSecrets for all ServiceAccount, list of secrets in the same namespace
        # to use for pulling any images in pods that reference this ServiceAccount.
        # For components that don't use ServiceAccounts (i.e. grafana, servicegraph, tracing)
        # ImagePullSecrets will be added to the corresponding Deployment(StatefulSet) objects.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. pkg/registry/core/rest/storage_core_generic.go

    	resourcequotastore "k8s.io/kubernetes/pkg/registry/core/resourcequota/storage"
    	secretstore "k8s.io/kubernetes/pkg/registry/core/secret/storage"
    	serviceaccountstore "k8s.io/kubernetes/pkg/registry/core/serviceaccount/storage"
    	"k8s.io/kubernetes/pkg/serviceaccount"
    )
    
    // GenericConfig provides information needed to build RESTStorage
    // for generic resources in core. It implements the "normal" RESTStorageProvider interface.
    type GenericConfig struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top