Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for ServiceAccounts (0.24 sec)

  1. cmd/admin-handlers-idp-ldap.go

    	}
    	if listType == "" || listType == "svcacc-only" {
    		serviceAccounts, err = globalIAMSys.ListServiceAccounts(ctx, targetAccount)
    		if err != nil {
    			writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    			return
    		}
    	}
    
    	var serviceAccountList []madmin.ServiceAccountInfo
    	var stsKeyList []madmin.ServiceAccountInfo
    
    	for _, svc := range serviceAccounts {
    		expiryTime := svc.Expiration
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 13.3K bytes
    - Viewed (0)
  2. manifests/charts/istio-operator/templates/clusterrole.yaml

      - ""
      resources:
      - configmaps
      - endpoints
      - events
      - namespaces
      - pods
      - pods/proxy
      - pods/portforward
      - persistentvolumeclaims
      - secrets
      - services
      - serviceaccounts
      - resourcequotas
      verbs:
      - '*'
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Nov 11 14:04:45 GMT 2022
    - 1.8K bytes
    - Viewed (0)
  3. istioctl/pkg/workload/workload_test.go

    			for k := range generated {
    				os.Remove(path.Join(testdir, k))
    			}
    		})
    		t.Run(dir.Name(), func(t *testing.T) {
    			createClientFunc := func(client kube.CLIClient) {
    				client.Kube().CoreV1().ServiceAccounts("bar").Create(context.Background(), &v1.ServiceAccount{
    					ObjectMeta: metav1.ObjectMeta{Namespace: "bar", Name: "vm-serviceaccount"},
    					Secrets:    []v1.ObjectReference{{Name: "test"}},
    				}, metav1.CreateOptions{})
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Mar 27 16:59:05 GMT 2024
    - 14.6K bytes
    - Viewed (0)
  4. 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) {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  5. 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"]
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Nov 09 01:32:06 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  6. manifests/charts/istio-cni/values.yaml

        # 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.
        # Must be set for any cluster configured with private docker registry.
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Feb 28 17:29:38 GMT 2024
    - 5.1K bytes
    - Viewed (1)
  7. manifests/charts/istiod-remote/templates/clusterrole.yaml

        verbs: [ "get", "watch", "list", "update", "patch", "create", "delete" ]
        resources: [ "services" ]
      - apiGroups: [""]
        verbs: [ "get", "watch", "list", "update", "patch", "create", "delete" ]
        resources: [ "serviceaccounts"]
    {{- end }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Nov 09 01:32:06 GMT 2023
    - 5.7K bytes
    - Viewed (0)
  8. cmd/admin-handlers-users.go

    				return
    			}
    		case allSvcAcctsFile:
    			serviceAccounts := make(map[string]UserIdentity)
    			err := globalIAMSys.store.loadUsers(ctx, svcUser, serviceAccounts)
    			if err != nil {
    				writeErrorResponse(ctx, w, exportError(ctx, err, iamFile, ""), r.URL)
    				return
    			}
    			svcAccts := make(map[string]madmin.SRSvcAccCreate)
    			for user, acc := range serviceAccounts {
    				if user == siteReplicatorSvcAcc {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 77.3K bytes
    - Viewed (0)
  9. cmd/iam-store.go

    	cache := store.rlock()
    	defer store.runlock()
    
    	var serviceAccounts []auth.Credentials
    	for _, u := range cache.iamUsersMap {
    		v := u.Credentials
    		if accessKey != "" && v.ParentUser == accessKey {
    			if v.IsServiceAccount() {
    				// Hide secret key & session key here
    				v.SecretKey = ""
    				v.SessionToken = ""
    				serviceAccounts = append(serviceAccounts, v)
    			}
    		}
    	}
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Apr 27 10:04:10 GMT 2024
    - 75.2K bytes
    - Viewed (2)
  10. istioctl/pkg/multicluster/remote_secret.go

    }
    
    func getOrCreateServiceAccount(client kube.CLIClient, opt RemoteSecretOptions) (*v1.ServiceAccount, error) {
    	if sa, err := client.Kube().CoreV1().ServiceAccounts(opt.Namespace).Get(
    		context.TODO(), opt.ServiceAccountName, metav1.GetOptions{}); err == nil {
    		return sa, nil
    	} else if !opt.CreateServiceAccount {
    		// User chose not to automatically create the service account.
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Oct 11 01:43:17 GMT 2023
    - 24K bytes
    - Viewed (0)
Back to top