Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,398 for admins (0.41 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. docs_src/bigger_applications/app/internal/admin.py

    from fastapi import APIRouter
    
    router = APIRouter()
    
    
    @router.post("/")
    async def update_admin():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Nov 29 17:32:18 UTC 2020
    - 147 bytes
    - Viewed (0)
  8. docs_src/bigger_applications/app_an/internal/admin.py

    from fastapi import APIRouter
    
    router = APIRouter()
    
    
    @router.post("/")
    async def update_admin():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 147 bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.29.md

     - `kubeadm`: a separate "super-admin.conf" file is now deployed. The User in `admin.conf` is now bound to a new RBAC Group `kubeadm:cluster-admins` that has `cluster-admin` `ClusterRole` access. The User in `super-admin.conf` is now bound to the `system:masters` built-in super-powers / break-glass Group that can bypass RBAC. Before this change, the default `admin.conf` was bound to `system:masters` Group, which was undesired. Executing `kubeadm...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  10. istioctl/pkg/admin/admin.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package admin
    
    import (
    	"fmt"
    
    	"github.com/spf13/cobra"
    
    	"istio.io/istio/istioctl/pkg/cli"
    )
    
    func Cmd(ctx cli.Context) *cobra.Command {
    	adminCmd := &cobra.Command{
    		Use:   "admin",
    		Short: "Manage control plane (istiod) configuration",
    		Long:  "A group of commands used to manage istiod configuration",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top