Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,745 for admins (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. cmd/admin-router.go

    import (
    	"net/http"
    
    	"github.com/klauspost/compress/gzhttp"
    	"github.com/klauspost/compress/gzip"
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/mux"
    )
    
    const (
    	adminPathPrefix                = minioReservedBucketPath + "/admin"
    	adminAPIVersion                = madmin.AdminAPIVersion
    	adminAPIVersionPrefix          = SlashSeparator + adminAPIVersion
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 21:09:36 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/templates/structuring-software-projects/server-application/app/src/main/resources/templates/admin.html

    <!DOCTYPE HTML>
    <html xmlns:th='https://www.thymeleaf.org'>
    <head>
      <title>My Product Configurator</title>
      <meta http-equiv='Content-Type' content='text/html; charset=UTF-8'/>
    </head>
    <body>
      <form action='#' th:action='@{/admin}' th:object='${versionRange}' method='post'>
        <p>From Version: <input type='text' th:field='*{fromVersion}'/></p>
        <p>To Version:   <input type='text' th:field='*{toVersion}'/></p>
        <p><input type='submit' value='Submit'/></p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 494 bytes
    - Viewed (0)
  9. cmd/admin-handlers_test.go

    	case stopCmd:
    		return serviceStop
    	}
    	return serviceRestart
    }
    
    func (c cmdType) toServiceAction() madmin.ServiceAction {
    	switch c {
    	case restartCmd:
    		return madmin.ServiceActionRestart
    	case stopCmd:
    		return madmin.ServiceActionStop
    	}
    	return madmin.ServiceActionRestart
    }
    
    // testServiceSignalReceiver - Helper function that simulates a
    // go-routine waiting on service signal.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. cluster/addons/addon-manager/kube-addons.sh

    # shellcheck disable=SC2034
    ADDON_CHECK_INTERVAL_SEC=${TEST_ADDON_CHECK_INTERVAL_SEC:-60}
    ADDON_PATH=${ADDON_PATH:-/etc/kubernetes/addons}
    
    # This variable is unused in this file, but not in those that source it.
    # shellcheck disable=SC2034
    SYSTEM_NAMESPACE=kube-system
    
    # Addons could use this label with two modes:
    # - ADDON_MANAGER_LABEL=Reconcile
    # - ADDON_MANAGER_LABEL=EnsureExists
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 05:40:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top