Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for authorizationv1 (1.23 sec)

  1. cmd/object-handlers.go

    		}
    		rc.Init(bucket, object, h)
    
    		ci, err := globalCacheConfig.Get(rc)
    		if ci != nil {
    			tgs, ok := ci.Metadata[xhttp.AmzObjectTagging]
    			if ok {
    				// Set this such that authorization policies can be applied on the object tags.
    				r.Header.Set(xhttp.AmzObjectTagging, tgs)
    			}
    
    			if s3Error := authorizeRequest(ctx, r, policy.GetObjectAction); s3Error != ErrNone {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

        cat <<EOF >/etc/gcp_authz.config
    clusters:
      - name: gcp-authorization-server
        cluster:
          server: ${GCP_AUTHZ_URL}
    users:
      - name: kube-apiserver
        user:
          auth-provider:
            name: gcp
    current-context: webhook
    contexts:
    - context:
        cluster: gcp-authorization-server
        user: kube-apiserver
      name: webhook
    EOF
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. cmd/object-handlers_test.go

    				case TooBigObject:
    					req.ContentLength = globalMaxObjectSize + 1
    					// Malformed signature.
    					// Used in test case  6.
    				case BadSignature:
    					req.Header.Set("authorization", req.Header.Get("authorization")+"a")
    					// Setting an invalid Content-MD5 to force a Md5 Mismatch error.
    					// Used in tesr case 7.
    				case BadMD5:
    					req.Header.Set("Content-MD5", "badmd5")
    				}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    	cst := newClientServerTest(t, mode, HandlerFunc(func(rw ResponseWriter, req *Request) {
    		// Copy the Proxy-Authorization header to a new Request,
    		// since Request.BasicAuth only parses the Authorization header.
    		var r2 Request
    		r2.Header = Header{
    			"Authorization": req.Header["Proxy-Authorization"],
    		}
    		gotuser, gotpass, ok := r2.BasicAuth()
    		if !ok || gotuser != username || gotpass != password {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

    enableDebuggingHandlers: ${MASTER_KUBELET_ENABLE_DEBUGGING_HANDLERS:-false}
    hairpinMode: none
    staticPodPath: /etc/kubernetes/manifests
    authentication:
      webhook:
        enabled: false
      anonymous:
        enabled: true
    authorization:
      mode: AlwaysAllow
    EOF
      if [[ "${REGISTER_MASTER_KUBELET:-false}" == "false" ]]; then
         # Note: Standalone mode is used by GKE
        declare quoted_master_ip_range
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. samples/addons/grafana.yaml

    erties":[{"id":"displayName","value":"Routes"}]},{"matcher":{"id":"byName","options":"istio.io/debug"},"properties":[{"id":"displayName","value":"Debug"}]},{"matcher":{"id":"byName","options":"wads"},"properties":[{"id":"displayName","value":"Authorization"}]},{"matcher":{"id":"byName","options":"wds"},"properties":[{"id":"displayName","value":"Workloads"}]}]},"gridPos":{"h":10,"w":8,"x":0,"y":4},"id":9,"interval":"15s","options":{"legend":{"calcs":[],"displayMode":"list"}},"pluginVersion":"v11....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
Back to top