Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Ucred (0.08 sec)

  1. cmd/admin-handlers.go

    		if globalIAMSys.IsAllowed(policy.Args{
    			AccountName:     cred.AccessKey,
    			Groups:          cred.Groups,
    			Action:          policy.GetObjectAction,
    			BucketName:      bucketName,
    			ConditionValues: getConditionValues(r, "", cred),
    			IsOwner:         owner,
    			ObjectName:      "",
    			Claims:          cred.Claims,
    		}) {
    			rd = true
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    	templateParams := func(protocol protocol.Instance, src echo.Callers, dests echo.Instances, ciphers []string, port string) map[string]any {
    		hostName, dest, portN, cred := "*", dests[0], 80, ""
    		if protocol.IsTLS() {
    			hostName, portN, cred = dest.Config().ClusterLocalFQDN(), 443, "cred"
    		}
    		return map[string]any{
    			"IngressNamespace":   src[0].(ingress.Instance).Namespace(),
    			"GatewayHost":        hostName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    var getRemoteInstanceClient = func(r *http.Request, host string) (*miniogo.Core, error) {
    	cred := getReqAccessCred(r, globalSite.Region())
    	// In a federated deployment, all the instances share config files
    	// and hence expected to have same credentials.
    	core, err := miniogo.NewCore(host, &miniogo.Options{
    		Creds:     credentials.NewStaticV4(cred.AccessKey, cred.SecretKey, ""),
    		Secure:    globalIsTLS,
    		Transport: getRemoteInstanceTransport(),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  4. cmd/site-replication.go

    		if err != nil {
    			return fmt.Errorf("unable to query LDAP server for %s: %w", ldapUser, err)
    		}
    
    		cred.Groups = ldapGroups
    	}
    
    	// Set these credentials to IAM.
    	if _, err := globalIAMSys.SetTempUser(ctx, cred.AccessKey, cred, stsCred.ParentPolicyMapping); err != nil {
    		return fmt.Errorf("unable to save STS credential and/or parent policy mapping: %w", err)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/gateway_test.go

    					CredentialName: "httpbin-cred",
    				},
    			},
    			transportProtocol: istionetworking.TransportProtocolQUIC,
    			result: &auth.DownstreamTlsContext{
    				CommonTlsContext: &auth.CommonTlsContext{
    					AlpnProtocols: util.ALPNHttp3OverQUIC,
    					TlsCertificateSdsSecretConfigs: []*auth.SdsSecretConfig{
    						{
    							Name:      "kubernetes://httpbin-cred",
    							SdsConfig: model.SDSAdsConfig,
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  6. pkg/config/validation/validation_test.go

    			"cannot have associated private key", "",
    		},
    		{
    			"istio_mutual with credential name",
    			&networking.ServerTLSSettings{
    				Mode:           networking.ServerTLSSettings_ISTIO_MUTUAL,
    				CredentialName: "some-cred",
    			},
    			"cannot have associated credentialName", "",
    		},
    		{
    			"invalid cipher suites",
    			&networking.ServerTLSSettings{
    				Mode:           networking.ServerTLSSettings_SIMPLE,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
Back to top