Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 198 for beraber (0.11 sec)

  1. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

                  "type": "string"
                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
              "token": {
                "description": "Token is the opaque bearer token.",
                "type": "string"
              }
            },
            "type": "object"
          },
          "io.k8s.api.authentication.v1.TokenReviewStatus": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/types.go

    type KubeletAuthentication struct {
    	// x509 contains settings related to x509 client certificate authentication
    	X509 KubeletX509Authentication
    	// webhook contains settings related to webhook bearer token authentication
    	Webhook KubeletWebhookAuthentication
    	// anonymous contains settings related to anonymous authentication
    	Anonymous KubeletAnonymousAuthentication
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. docs/de/docs/advanced/security/oauth2-scopes.md

        Für OAuth2 sind es einfach nur Strings.
    
    ## Gesamtübersicht
    
    Sehen wir uns zunächst kurz die Teile an, die sich gegenüber den Beispielen im Haupt-**Tutorial – Benutzerhandbuch** für [OAuth2 mit Password (und Hashing), Bearer mit JWT-Tokens](../../tutorial/security/oauth2-jwt.md){.internal-link target=_blank} ändern. Diesmal verwenden wir OAuth2-Scopes:
    
    === "Python 3.10+"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. docs/zh/docs/advanced/security/oauth2-scopes.md

    !!! info "说明"
    
        OAuth2 中,**作用域**只是声明特定权限的字符串。
    
        是否使用冒号 `:` 等符号,或是不是 URL 并不重要。
    
        这些细节只是特定的实现方式。
    
        对 OAuth2 来说,它们都只是字符串而已。
    
    ## 全局纵览
    
    首先,快速浏览一下以下代码与**用户指南**中 [OAuth2 实现密码哈希与 Bearer  JWT 令牌验证](../../tutorial/security/oauth2-jwt.md){.internal-link target=_blank}一章中代码的区别。以下代码使用 OAuth2 作用域:
    
    ```Python hl_lines="2  4  8  12  46  64  105  107-115  121-124  128-134  139  153"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 22:43:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. cmd/batch-expire.go

    //           # retainVersions: 5 # keep the latest 5 versions of the object including delete markers.
    //
    //   notify:
    //     endpoint: https://notify.endpoint # notification endpoint to receive job completion status
    //     token: Bearer xxxxx # optional authentication token for the notification endpoint
    //
    //   retry:
    //     attempts: 10 # number of retries for the job before giving up
    //     delay: 500ms # least amount of delay between each retry
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. tests/integration/pilot/common/routing.go

    		"Authorization":    {"Bearer " + jwt.TokenIssuer1WithNestedClaims2},
    		"X-Jwt-Nested-Key": {"value_to_be_replaced"},
    	}
    	headersWithToken2WithAddedHeader := map[string][]string{
    		"Authorization":      {"Bearer " + jwt.TokenIssuer1WithNestedClaims2},
    		"x-jwt-wrong-header": {"header_to_be_deleted"},
    	}
    	headersWithToken3 := map[string][]string{
    		"Authorization": {"Bearer " + jwt.TokenIssuer1WithCollisionResistantName},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/security/oauth2-scopes.md

        For OAuth2 they are just strings.
    
    ## Global view
    
    First, let's quickly see the parts that change from the examples in the main **Tutorial - User Guide** for [OAuth2 with Password (and hashing), Bearer with JWT tokens](../../tutorial/security/oauth2-jwt.md){.internal-link target=_blank}. Now using OAuth2 scopes:
    
    === "Python 3.10+"
    
        ```Python hl_lines="5  9  13  47  65  106  108-116  122-125  129-135  140  156"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  8. cluster/gce/upgrade.sh

      fi
    }
    
    function wait-for-master() {
      echo "== Waiting for new master to respond to API requests =="
    
      local curl_auth_arg
      if [[ -n ${KUBE_BEARER_TOKEN:-} ]]; then
        curl_auth_arg=(-H "Authorization: Bearer ${KUBE_BEARER_TOKEN}")
      elif [[ -n ${KUBE_PASSWORD:-} ]]; then
        curl_auth_arg=(--user "${KUBE_USER}:${KUBE_PASSWORD}")
      else
        echo "can't get auth credentials for the current master"
        exit 1
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set_utils.go

    	"k8s.io/kubernetes/pkg/features"
    )
    
    var patchCodec = scheme.Codecs.LegacyCodec(apps.SchemeGroupVersion)
    
    // overlappingStatefulSets sorts a list of StatefulSets by creation timestamp, using their names as a tie breaker.
    // Generally used to tie break between StatefulSets that have overlapping selectors.
    type overlappingStatefulSets []*apps.StatefulSet
    
    func (o overlappingStatefulSets) Len() int { return len(o) }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__authentication.k8s.io__v1alpha1_openapi.json

            "format": "date-time",
            "type": "string"
          }
        },
        "securitySchemes": {
          "BearerToken": {
            "description": "Bearer Token authentication",
            "in": "header",
            "name": "authorization",
            "type": "apiKey"
          }
        }
      },
      "info": {
        "title": "Kubernetes",
        "version": "unversioned"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
Back to top