Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,150 for admins (0.23 sec)

  1. pkg/volume/util/attach_limit.go

    	CinderVolumeLimitKey = "attachable-volumes-cinder"
    	// DefaultMaxCinderVolumes defines the maximum number of PD Volumes for Cinder
    	// For Openstack we are keeping this to a high enough value so as depending on backend
    	// cluster admins can configure it.
    	DefaultMaxCinderVolumes = 256
    
    	// CSIAttachLimitPrefix defines prefix used for CSI volumes
    	CSIAttachLimitPrefix = "attachable-volumes-csi-"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 17:25:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. docs/multi-user/admin/README.md

    ### 3. Configure `mc` and create another user user1 with attached policy user1policy
    
    ```
    mc alias set myminio-admin1 http://localhost:9000 admin1 admin123 --api s3v4
    
    mc admin user add myminio-admin1 user1 user123
    mc admin policy attach myminio-admin1 user1policy ~/user1policy.json
    mc admin policy attach myminio-admin1 user1policy --user=user1
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 21 06:38:06 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/deleted_kinds.go

    	// If the cluster-admin has requested serving one more release, allow it.
    	if e.isAlpha && e.strictRemovedHandlingInAlpha { // don't serve in alpha if we want strict handling
    		return false
    	}
    	if e.isAlpha { // alphas are allowed to continue serving expired betas while we clean up the test
    		return true
    	}
    	if e.serveRemovedAPIsOneMoreRelease { // cluster-admins are allowed to kick the can one release down the road
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 16 03:02:49 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  4. pkg/scheduler/metrics/resources/resources.go

    // and phase of lifecycle. Each pod returns two series per resource - one for
    // their aggregate usage (required to schedule) and one for their phase specific
    // usage. This allows admins to assess the cost per resource at different phases
    // of startup and compare to actual resource usage.
    func NewPodResourcesMetricsCollector(podLister corelisters.PodLister) metrics.StableCollector {
    	return &podResourceCollector{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 23:15:53 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. docs/bucket/versioning/README.md

    - [Object Lock and Immutablity Guide](https://min.io/docs/minio/linux/administration/object-management/object-retention.html)
    - [MinIO Admin Complete Guide](https://min.io/docs/minio/linux/reference/minio-mc-admin.html)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 04 21:43:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. pkg/apis/flowcontrol/validation/validation_test.go

    			field.Invalid(field.NewPath("spec").Child("exempt").Child("lendablePercent"), int32(-1), "must be between 0 and 100, inclusive"),
    		},
    	}, {
    		name:                       "admins are not allowed to repurpose the 'exempt' pl to a limited type",
    		priorityLevelConfiguration: exemptTypeRepurposed,
    		expectedErrors: field.ErrorList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness.go

    	if classification == nil {
    		return
    	}
    
    	// We intentionally set the UID of the flow-schema and priority-level instead of name. This is so that
    	// the names that cluster-admins choose for categorization and priority levels are not exposed, also
    	// the names might make it obvious to the users that they are rejected due to classification with low priority.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    // EnsureAdminClusterRoleBinding constructs a client from admin.conf and optionally
    // constructs a client from super-admin.conf if the file exists. It then proceeds
    // to pass the clients to EnsureAdminClusterRoleBindingImpl. The function returns a
    // usable client from admin.conf with RBAC properly constructed or an error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/constants/constants.go

    	// AdminKubeConfigFileName defines name for the kubeconfig aimed to be used by the admin of the cluster
    	AdminKubeConfigFileName = "admin.conf"
    	// SuperAdminKubeConfigFileName defines name for the kubeconfig aimed to be used by the super-admin of the cluster
    	SuperAdminKubeConfigFileName = "super-admin.conf"
    
    	// KubeletBootstrapKubeConfigFileName defines the file name for the kubeconfig that the kubelet will use to do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    	groupsClaim := a.jwtAuthenticator.ClaimMappings.Groups.Claim
    	if len(groupsClaim) > 0 {
    		if _, ok := c[groupsClaim]; ok {
    			// Some admins want to use string claims like "role" as the group value.
    			// Allow the group claim to be a single string instead of an array.
    			//
    			// See: https://github.com/kubernetes/kubernetes/issues/33290
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
Back to top