Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 185 for Credential (0.23 sec)

  1. docs/logging/README.md

      "requestPath": "/testbucket/hosts",
      "requestHost": "localhost:9000",
      "requestHeader": {
        "Accept-Encoding": "zstd,gzip",
        "Authorization": "AWS4-HMAC-SHA256 Credential=minioadmin/20240509/us-east-1/s3/aws4_request,SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-decoded-content-length,Signature=d4d6862e6cc61011a61fa801da71048ece4f32a0562cad6bb88bdda50d7fcb95",
        "Content-Length": "401",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 17:15:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. cluster/gce/config-test.sh

    # are presented to kubelet:
    # --image-credential-provider-config=${path-to-config}
    # --image-credential-provider-bin-dir=${path-to-auth-provider-binary}
    # Also, it is required that DisableKubeletCloudCredentialProviders and KubeletCredentialProviders
    # feature gates are set to true for kubelet to use external credential provider.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

     */
    
    package org.gradle.api.provider;
    
    import org.gradle.api.Action;
    import org.gradle.api.Incubating;
    import org.gradle.api.NonExtensible;
    import org.gradle.api.credentials.AwsCredentials;
    import org.gradle.api.credentials.Credentials;
    import org.gradle.api.credentials.PasswordCredentials;
    import org.gradle.api.file.FileContents;
    import org.gradle.api.file.RegularFile;
    import org.gradle.api.initialization.Settings;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. cluster/gce/config-default.sh

    # When ENABLE_AUTH_PROVIDER_GCP is set, following flags for out-of-tree credential provider for GCP
    # are presented to kubelet:
    # --image-credential-provider-config=${path-to-config}
    # --image-credential-provider-bin-dir=${path-to-auth-provider-binary}
    # Also, it is required that DisableKubeletCloudCredentialProviders
    # feature gates are set to true for kubelet to use external credential provider.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. pilot/pkg/xds/sds.go

    	// Fetch the appropriate cluster's secret, based on the credential type
    	var secretController credscontroller.Controller
    	switch sr.ResourceType {
    	case credentials.KubernetesGatewaySecretType:
    		secretController = configClusterSecrets
    	default:
    		secretController = proxyClusterSecrets
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/types.go

    // each exec credential provider. Kubelet reads this configuration from disk and enables
    // each provider as specified by the CredentialProvider type.
    type CredentialProviderConfig struct {
    	metav1.TypeMeta
    
    	// providers is a list of credential provider plugins that will be enabled by the kubelet.
    	// Multiple providers may match against a single image, in which case credentials
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. internal/kms/config.go

    	EnvKMSDefaultKey = "MINIO_KMS_SSE_KEY" // Default key used for SSE-S3 or when no SSE-KMS key ID is specified
    	EnvKMSAPIKey     = "MINIO_KMS_API_KEY" // Credential to access the MinIO KMS.
    )
    
    // Environment variables for MinIO KES.
    const (
    	EnvKESEndpoint       = "MINIO_KMS_KES_ENDPOINT"     // One or multiple KES endpoints, separated by ','
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure.sh

      # When ENABLE_AUTH_PROVIDER_GCP is set, following flags for out-of-tree credential provider for GCP
      # are presented to kubelet:
      # --image-credential-provider-config=${path-to-config}
      # --image-credential-provider-bin-dir=${path-to-auth-provider-binary}
      # Also, it is required that DisableKubeletCloudCredentialProviders
      # feature gate is set to true for kubelet to use external credential provider.
      if [[ "${ENABLE_AUTH_PROVIDER_GCP:-}" == "true" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_tls.go

    		if opts.serviceRegistry == provider.External && len(tls.SubjectAltNames) == 0 {
    			tls = tls.DeepCopy()
    			tls.SubjectAltNames = opts.serviceAccounts
    		}
    		if tls.CredentialName != "" {
    			// If  credential name is specified at Destination Rule config and originating node is egress gateway, create
    			// SDS config for egress gateway to fetch key/cert at gateway agent.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/DuplexTest.kt

       * test makes a single call with two duplex requests!
       */
      @Test
      fun duplexWithAuthChallenge() {
        enableProtocol(Protocol.HTTP_2)
        val credential = basic("jesse", "secret")
        client =
          client.newBuilder()
            .authenticator(RecordingOkAuthenticator(credential, null))
            .build()
        val body1 =
          MockStreamHandler()
            .sendResponse("please authenticate!\n")
            .requestIOException()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top