Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for authorizationv1 (0.27 sec)

  1. 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)
  2. tests/integration/pilot/common/routing.go

    		match.Or(match.ServiceName(t.Apps.B.NamespacedName()), match.AmbientCaptured()),
    	)}
    	headersWithToken := map[string][]string{
    		"Authorization": {"Bearer " + jwt.TokenIssuer1WithNestedClaims1},
    	}
    	headersWithInvalidToken := map[string][]string{
    		"Authorization": {"Bearer " + jwt.TokenExpired},
    	}
    	headersWithNoToken := map[string][]string{"Host": {"foo.bar"}}
    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_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. maven-model-builder/src/test/resources/dag.txt

    	quarkus/extensions/smallrye-reactive-messaging-kafka/runtime/pom.xml
    	quarkus/test-framework/junit5/pom.xml
    	quarkus/test-framework/kafka-companion/pom.xml
    quarkus/integration-tests/keycloak-authorization/pom.xml
    	quarkus/extensions/keycloak-authorization/runtime/pom.xml
    	quarkus/extensions/keycloak-admin-client-reactive/runtime/pom.xml
    	quarkus/extensions/resteasy-reactive/quarkus-resteasy-reactive-jackson/runtime/pom.xml
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.4.md

      - [alpha] Access Review APIs expose authorization engine to external inquiries for delegation, inspection, and debugging ([docs](http://kubernetes.io/docs/admin/authorization/)) ([kubernetes/features#37](https://github.com/kubernetes/enhancements/issues/37))
    - **Cluster Lifecycle**
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    				t.Errorf("no claims specified in response")
    			}
    			claim := r.URL.Path[1:] // "/groups" -> "groups"
    			expectedAuth := fmt.Sprintf("Bearer %v_token", claim)
    			auth := r.Header.Get("Authorization")
    			if auth != expectedAuth {
    				t.Errorf("bearer token expected: %q, was %q", expectedAuth, auth)
    			}
    			jws, err := signer.Sign([]byte(claimToResponseMap[claim]))
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  9. 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)
  10. okhttp/src/test/java/okhttp3/CacheTest.kt

          MockResponse.Builder()
            .body("B")
            .build(),
        )
        val url = server.url("/")
        val request =
          Request.Builder()
            .url(url)
            .header("Authorization", "password")
            .build()
        val response = client.newCall(request).execute()
        assertThat(response.body.string()).isEqualTo("A")
        assertThat(get(url).body.string()).isEqualTo("A")
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
Back to top