Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for serviceAccount (0.33 sec)

  1. pkg/printers/internalversion/printers_test.go

    		}
    	}
    }
    
    func TestPrintServiceAccount(t *testing.T) {
    	tests := []struct {
    		serviceAccount api.ServiceAccount
    		expected       []metav1.TableRow
    	}{
    		// Basic service account without secrets
    		{
    			serviceAccount: api.ServiceAccount{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "sa1",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. pkg/apis/core/zz_generated.deepcopy.go

    func (in *ServiceAccount) DeepCopy() *ServiceAccount {
    	if in == nil {
    		return nil
    	}
    	out := new(ServiceAccount)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *ServiceAccount) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *ServiceAccount) DeepCopy() *ServiceAccount {
    	if in == nil {
    		return nil
    	}
    	out := new(ServiceAccount)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *ServiceAccount) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers.go

    		{Name: "Users", Type: "string", Priority: 1, Description: "Users in the roleBinding"},
    		{Name: "Groups", Type: "string", Priority: 1, Description: "Groups in the roleBinding"},
    		{Name: "ServiceAccounts", Type: "string", Priority: 1, Description: "ServiceAccounts in the roleBinding"},
    	}
    	_ = h.TableHandler(roleBindingsColumnDefinitions, printRoleBinding)
    	_ = h.TableHandler(roleBindingsColumnDefinitions, printRoleBindingList)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

        echo "${OLD_MASTER_KEY}" | base64 --decode > "${OLD_MASTER_KEY_PATH}"
      fi
    
      SERVICEACCOUNT_CERT_PATH="${pki_dir}/serviceaccount.crt"
      write-pki-data "${SERVICEACCOUNT_CERT}" "${SERVICEACCOUNT_CERT_PATH}"
    
      SERVICEACCOUNT_KEY_PATH="${pki_dir}/serviceaccount.key"
      write-pki-data "${SERVICEACCOUNT_KEY}" "${SERVICEACCOUNT_KEY_PATH}"
    
      if [[ -n "${REQUESTHEADER_CA_CERT:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. samples/addons/grafana.yaml

    ---
    # Source: grafana/templates/serviceaccount.yaml
    apiVersion: v1
    kind: ServiceAccount
    automountServiceAccountToken: false
    metadata:
      labels:
        helm.sh/chart: grafana-8.0.1
        app.kubernetes.io/name: grafana
        app.kubernetes.io/instance: grafana
        app.kubernetes.io/version: "11.0.0"
        app.kubernetes.io/managed-by: Helm
      name: grafana
      namespace: istio-system
    ---
    # Source: grafana/templates/configmap.yaml
    apiVersion: v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  7. cmd/site-replication.go

    	// Service accounts are the static accounts that should be synced with
    	// valid claims.
    	{
    		serviceAccounts := make(map[string]UserIdentity)
    		err := globalIAMSys.store.loadUsers(ctx, svcUser, serviceAccounts)
    		if err != nil {
    			return errSRBackendIssue(err)
    		}
    
    		for user, acc := range serviceAccounts {
    			if user == siteReplicatorSvcAcc {
    				// skip the site replicate svc account as it is
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top