Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 144 for Authorize (0.15 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/certs_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // This file is an exact copy of
    // plugin/pkg/auth/authorizer/webhook/certs_test.go
    
    package webhook
    
    var caCert = []byte(`-----BEGIN CERTIFICATE-----
    MIIDCzCCAfOgAwIBAgIJAKK9m2Cfg5uhMA0GCSqGSIb3DQEBCwUAMBsxGTAXBgNV
    BAMMEHdlYmhvb2tfYXV0aHpfY2EwIBcNMTYwMjE2MjM0NDI4WhgPMjI4OTEyMDEy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 22 21:47:17 UTC 2020
    - 8.4K bytes
    - Viewed (0)
  2. docs/iam/identity-management-plugin.md

    MINIO_IDENTITY_PLUGIN_AUTH_TOKEN    (string)    authorization token for plugin hook endpoint
    MINIO_IDENTITY_PLUGIN_ROLE_POLICY*  (string)    policies to apply for plugin authorized users
    MINIO_IDENTITY_PLUGIN_ROLE_ID       (string)    unique ID to generate the ARN
    MINIO_IDENTITY_PLUGIN_COMMENT       (sentence)  optionally add a comment to this setting
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/admission.go

    	a.evaluator = NewQuotaEvaluator(a.quotaAccessor, a.quotaConfiguration.IgnoredResources(), generic.NewRegistry(a.quotaConfiguration.Evaluators()), nil, a.config, a.numEvaluators, a.stopCh)
    }
    
    // ValidateInitialization ensures an authorizer is set.
    func (a *QuotaAdmission) ValidateInitialization() error {
    	if a.initializationErr != nil {
    		return a.initializationErr
    	}
    	if a.stopCh == nil {
    		return fmt.Errorf("missing stopCh")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 23 10:34:50 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  4. pilot/pkg/xds/debuggen.go

    	}}
    	return res, nil, model.DefaultXdsLogDetails, true, nil
    }
    
    func validateProxyAuthentication(proxy *model.Proxy, w *model.WatchedResource) error {
    	if proxy.VerifiedIdentity == nil {
    		log.Warnf("proxy %s is not authorized to receive debug. Ensure you are connecting over TLS port and are authenticated.", proxy.ID)
    		return status.Error(codes.Unauthenticated, "authentication required")
    	}
    	if w.ResourceNames == nil || len(w.ResourceNames) != 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 18:51:52 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. LICENSES/third_party/forked/shell2junit/LICENSE

    1. Definitions.
    
    "License" shall mean the terms and conditions for use, reproduction, and 
    distribution as defined by Sections 1 through 9 of this document. 
    
    "Licensor" shall mean the copyright owner or entity authorized by the 
    copyright owner that is granting the License. 
    
    "Legal Entity" shall mean the union of the acting entity and all other 
    entities that control, are controlled by, or are under common control with 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 08 11:48:19 UTC 2021
    - 9.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/isolated/IsolationSchemeTest.groovy

        }
    
        def "exposes authorized service"() {
            def allServices = Mock(ServiceLookup)
            def params = Stub(SomeParams)
            def service = Stub(serviceType)
            _ * allServices.find(serviceType) >> service
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 19:49:52 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/init/kubeletfinalize.go

    	if !ok {
    		return errors.Errorf("the file %q does not contain authentication for user %q", kubeconfigPath, cfg.NodeRegistration.Name)
    	}
    
    	// Update the client certificate and key of the node authorizer to point to the PEM symbolic link.
    	info.ClientKeyData = []byte{}
    	info.ClientCertificateData = []byte{}
    	info.ClientKey = pemPath
    	info.ClientCertificate = pemPath
    
    	// Writes the kubeconfig back to disk.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:54:51 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. security/pkg/server/ca/node_auth.go

    	clusterID := kubeauth.ExtractClusterID(ctx)
    	na := m.component.ForCluster(clusterID)
    	if na == nil {
    		return fmt.Errorf("no node authorizer for cluster %v", clusterID)
    	}
    	return (*na).authenticateImpersonation(caller, requestedIdentityString)
    }
    
    // ClusterNodeAuthorizer is a component that implements a subset of Kubernetes Node Authorization
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. docs/sts/wso2.md

    | azp        | _string_       | The authorized party for which the token is issued to. The client identifier of the OAuth client that the token is issued for, is sent herewith.                                        |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  10. pilot/pkg/xds/ecds.go

    	secretController credscontroller.Controller,
    ) map[string][]byte {
    	if proxy.VerifiedIdentity == nil {
    		log.Warnf("proxy %s is not authorized to receive secret. Ensure you are connecting over TLS port and are authenticated.", proxy.ID)
    		return nil
    	}
    
    	results := make(map[string][]byte)
    	for _, sr := range secretResources {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 18:25:42 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top