Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 121 for Credential (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. cmd/auth-handler.go

    }
    
    func validateAdminSignature(ctx context.Context, r *http.Request, region string) (auth.Credentials, bool, APIErrorCode) {
    	var cred auth.Credentials
    	var owner bool
    	s3Err := ErrAccessDenied
    	if _, ok := r.Header[xhttp.AmzContentSha256]; ok &&
    		getRequestAuthType(r) == authTypeSigned {
    
    		// Get credential information from the request.
    		cred, owner, s3Err = getReqAccessKeyV4(r, region, serviceS3)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/join/kubelet.go

    	}
    	bootstrapKubeConfigFile := filepath.Join(data.KubeConfigDir(), kubeadmconstants.KubeletBootstrapKubeConfigFileName)
    
    	// Deletes the bootstrapKubeConfigFile, so the credential used for TLS bootstrap is removed from disk
    	defer os.Remove(bootstrapKubeConfigFile)
    
    	// Write the bootstrap kubelet config file or the TLS-Bootstrapped kubelet config file down to disk
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. pkg/config/analysis/msg/messages.yaml

            type: "[]string"
          - name: namespace
            type: string
    
      - name: "InvalidGatewayCredential"
        code: IST0161
        level: Error
        description: "The credential provided for the Gateway resource is invalid"
        template: "The credential referenced by the Gateway %s in namespace %s is invalid, which can cause the traffic not to work as expected."
        args:
          - name: gatewayName
            type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. cmd/postpolicyform.go

    	"$expires":                 true,
    	"$key":                     true,
    	"$success_action_redirect": true,
    	"$redirect":                true,
    	"$success_action_status":   true,
    	"$x-amz-algorithm":         false,
    	"$x-amz-credential":        false,
    	"$x-amz-date":              false,
    }
    
    var postPolicyIgnoreKeys = map[string]bool{
    	"Policy":              true,
    	xhttp.AmzSignature:    true,
    	xhttp.ContentEncoding: true,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top