Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 310 for Credential (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tests/integration/security/sds_ingress/util/util.go

    	PrivateKey:  TLSServerKeyB,
    	Certificate: TLSServerCertB,
    }
    
    var (
    	A  echo.Instances
    	VM echo.Instances
    )
    
    // IngressKubeSecretYAML will generate a credential for a gateway
    func IngressKubeSecretYAML(name, namespace string, ingressType CallType, ingressCred IngressCredential) string {
    	// Create Kubernetes secret for ingress gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 05:12:36 UTC 2023
    - 20.2K 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. cluster/common.sh

      fi
    
      # If we have a bearer token, also create a credential entry with basic auth
      # so that it is easy to discover the basic auth password for your cluster
      # to use in a web browser.
      if [[ -n "${KUBE_BEARER_TOKEN:-}" && -n "${KUBE_USER:-}" && -n "${KUBE_PASSWORD:-}" ]]; then
        KUBECONFIG="${KUBECONFIG}" "${kubectl}" config set-credentials "${CONTEXT}-basic-auth" "--username=${KUBE_USER}" "--password=${KUBE_PASSWORD}"
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/plugins/MavenPublishPlugin.java

                try {
                    credentialsProvider = providerFactory.credentials(toCheck.getClass(), identity);
                } catch (IllegalArgumentException e) {
                    // some possibilities are invalid repository names and invalid credential types
                    // either way, this is not the place to validate that
                    return false;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  10. docs/config/README.md

    /home/user1/.minio
    └─ certs
       ├─ CAs
       ├─ private.key
       └─ public.crt
    ```
    
    You can provide a custom certs directory using `--certs-dir` command line option.
    
    #### Credentials
    
    On MinIO admin credentials or root credentials are only allowed to be changed using ENVs namely `MINIO_ROOT_USER` and `MINIO_ROOT_PASSWORD`.
    
    ```sh
    export MINIO_ROOT_USER=minio
    export MINIO_ROOT_PASSWORD=minio13
    minio server /data
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K bytes
    - Viewed (0)
Back to top