Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for mysvcacct (0.2 sec)

  1. pkg/serviceaccount/claims_test.go

    				Expiry:    jwt.NewNumericDate(time.Unix(1514764800+100, 0)),
    			},
    			pc: &privateClaims{
    				Kubernetes: kubernetes{
    					Namespace: "myns",
    					Svcacct:   ref{Name: "mysvcacct", UID: "mysvcacct-uid"},
    					Pod:       &ref{Name: "mypod", UID: "mypod-uid"},
    				},
    			},
    		},
    		{
    			// secret
    			sa:  sa,
    			sec: sec,
    			exp: 100,
    			// single member audience
    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. helm/minio/templates/_helper_create_svcacct.txt

        rm -f $MINIO_ACCESSKEY_SECRETKEY_TMP
        return 1
      fi
      SVCACCT=$(head -1 $MINIO_ACCESSKEY_SECRETKEY_TMP)
      # Create the svcacct if it does not exist
      if ! checkSvcacctExists ; then
        echo "Creating svcacct '$SVCACCT'"
        # Check if policy file is define
        if [ -z $FILENAME ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 23:20:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. docs/site-replication/run-multi-site-oidc.sh

    # Create service account for STS user
    ./mc admin user svcacct add minio2 $STS_ACCESS_KEY --access-key testsvc --secret-key testsvc123
    if [ $? -ne 0 ]; then
    	echo "adding svc account failed, exiting.."
    	exit_1
    fi
    
    sleep 10
    
    ./mc admin user svcacct info minio1 testsvc
    if [ $? -ne 0 ]; then
    	echo "svc account not mirrored, exiting.."
    	exit_1
    fi
    
    ./mc admin user svcacct info minio2 testsvc
    if [ $? -ne 0 ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. docs/site-replication/run-multi-site-ldap.sh

    ./mc idp ldap policy entities minio3
    
    ./mc admin user svcacct info minio1 testsvc
    if [ $? -ne 0 ]; then
    	echo "svc account not mirrored, exiting.."
    	exit_1
    fi
    
    ./mc admin user svcacct info minio2 testsvc
    if [ $? -ne 0 ]; then
    	echo "svc account not mirrored, exiting.."
    	exit_1
    fi
    
    ./mc admin user svcacct info minio3 testsvc
    if [ $? -ne 0 ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. docs/site-replication/run-multi-site-minio-idp.sh

    	exit_1
    fi
    
    ./mc admin user svcacct info minio1 testsvc
    if [ $? -ne 0 ]; then
    	echo "svc account not mirrored, exiting.."
    	exit_1
    fi
    
    ./mc admin user svcacct info minio2 testsvc
    if [ $? -ne 0 ]; then
    	echo "svc account not mirrored, exiting.."
    	exit_1
    fi
    
    ./mc admin user svcacct rm minio1 testsvc
    if [ $? -ne 0 ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. helm/minio/templates/post-job.yaml

              {{- if .Values.makeServiceAccountJob.exitCommand }}
              command: [ "/bin/sh", "-c" ]
              args: ["/bin/sh /config/add-svcacct; EV=$?; {{ .Values.makeServiceAccountJob.exitCommand }} && exit $EV" ]
              {{- else }}
              command: ["/bin/sh", "/config/add-svcacct"]
              {{- end }}
              env:
                - name: MINIO_ENDPOINT
                  value: {{ template "minio.fullname" . }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jul 08 19:18:31 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. pkg/registry/core/serviceaccount/storage/token.go

    		return nil, err
    	}
    	svcacct := svcacctObj.(*api.ServiceAccount)
    
    	// Default unset spec audiences to API server audiences based on server config
    	if len(req.Spec.Audiences) == 0 {
    		req.Spec.Audiences = r.auds
    	}
    	// Populate metadata fields if not set
    	if len(req.Name) == 0 {
    		req.Name = svcacct.Name
    	}
    	if len(req.Namespace) == 0 {
    		req.Namespace = svcacct.Namespace
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. helm/minio/templates/configmap.yaml

      {{- if $svc.policy }}
      # SVC: {{ $svc.accessKey }}
      svc_policy_{{ $idx }}.json: |-
        {{- include (print $.Template.BasePath "/_helper_policy.tpl") .policy | nindent 4 }}
      {{- end }}
      {{- end }}
      add-svcacct: |-
        {{- include (print $.Template.BasePath "/_helper_create_svcacct.txt") . | nindent 4 }}
      custom-command: |-
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 17 06:04:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. pkg/serviceaccount/claims.go

    		jti = public.ID
    	}
    	return &apiserverserviceaccount.ServiceAccountInfo{
    		Namespace:    private.Kubernetes.Namespace,
    		Name:         private.Kubernetes.Svcacct.Name,
    		UID:          private.Kubernetes.Svcacct.UID,
    		PodName:      podName,
    		PodUID:       podUID,
    		NodeName:     nodeName,
    		NodeUID:      nodeUID,
    		CredentialID: apiserverserviceaccount.CredentialIDForJTI(jti),
    	}, nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. helm-releases/minio-5.0.6.tgz

    invalid" rm -f $MINIO_ACCESSKEY_SECRETKEY_TMP return 1 fi SVCACCT=$(head -1 $MINIO_ACCESSKEY_SECRETKEY_TMP) # Create the svcacct if it does not exist if ! checkSvcacctExists ; then echo "Creating svcacct '$SVCACCT'" # Check if policy file is define if [ -z $FILENAME ]; then ${MC} admin user svcacct add --access-key $(head -1 $MINIO_ACCESSKEY_SECRETKEY_TMP) --secret-key $(tail -n1 $MINIO_ACCESSKEY_SECRETKEY_TMP) myminio $USER else ${MC} admin user svcacct add --access-key $(head -1 $MINIO_ACCESSKEY_SECRETKEY_TMP)...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 13 06:53:06 UTC 2023
    - 20.3K bytes
    - Viewed (0)
Back to top