Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 286 for Credential (0.19 sec)

  1. manifests/charts/istiod-remote/values.yaml

          statusPort: 15020
          # Specify which tracer to use. One of: zipkin, lightstep, datadog, stackdriver, none.
          # If using stackdriver tracer outside GCP, set env GOOGLE_APPLICATION_CREDENTIALS to the GCP credential file.
          tracer: "none"
        proxy_init:
          # Base name for the proxy_init container, used to configure iptables.
          image: proxyv2
        # configure remote pilot and istiod service and endpoint
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. cmd/common-main.go

    				"Unable to validate credentials inherited from the secret file(s)")
    		}
    		if accessKey != "" {
    			os.Setenv(config.EnvRootUser, accessKey)
    		}
    	}
    
    	if env.IsSet(config.EnvSecretKeyFile) {
    		secretKey, err := readFromSecret(env.Get(config.EnvSecretKeyFile, ""))
    		if err != nil {
    			logger.Fatal(config.ErrInvalidCredentials(err),
    				"Unable to validate credentials inherited from the secret file(s)")
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/constants/constants.go

    	SuperAdminKubeConfigFileName = "super-admin.conf"
    
    	// KubeletBootstrapKubeConfigFileName defines the file name for the kubeconfig that the kubelet will use to do
    	// the TLS bootstrap to get itself an unique credential
    	KubeletBootstrapKubeConfigFileName = "bootstrap-kubelet.conf"
    
    	// KubeletKubeConfigFileName defines the file name for the kubeconfig that the control-plane kubelet will use for talking
    	// to the API server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/routing.go

      servers:
      - port:
          number: {{.GatewayPort}}
          name: {{.GatewayPortName}}
          protocol: {{.GatewayProtocol}}
    {{- if .Credential }}
        tls:
          mode: {{.TLSMode}}
          credentialName: {{.Credential}}
    {{- if .Ciphers }}
          cipherSuites:
    {{- range $cipher := .Ciphers }}
          - "{{$cipher}}"
    {{- end }}
    {{- end }}
    {{- end }}
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. pkg/istio-agent/agent_test.go

    		go sds[security.WorkloadKeyCertResourceName].DrainResponses()
    		expectFileUnchanged(t, filepath.Join(dir, "cert-chain.pem"), filepath.Join(dir, "key.pem"))
    	})
    
    	t.Run("credential fetcher downtime", func(t *testing.T) {
    		// This ensures our pre-warming is resilient to temporary downtime of the CA
    		dir := mktemp()
    		a := Setup(t, func(a AgentTest) AgentTest {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. cmd/site-replication.go

    						Parent:        acc.Credentials.ParentUser,
    						AccessKey:     user,
    						SecretKey:     acc.Credentials.SecretKey,
    						Groups:        acc.Credentials.Groups,
    						Claims:        claims,
    						SessionPolicy: json.RawMessage(policyJSON),
    						Status:        acc.Credentials.Status,
    						Name:          acc.Credentials.Name,
    						Description:   acc.Credentials.Description,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  7. pilot/pkg/model/context.go

    	// called before any List/Get calls if the state has changed
    	Reconcile(ctx *PushContext) error
    	// SecretAllowed determines if a SDS credential is accessible to a given namespace.
    	// For example, for resourceName of `kubernetes-gateway://ns-name/secret-name` and namespace of `ingress-ns`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster.go

    	if features.EnableHBONESend && proxy.Type != model.Waypoint && bool(!proxy.Metadata.DisableHBONESend) {
    		clusters = append(clusters, cb.buildConnectOriginate(proxy, req.Push, nil))
    	}
    
    	// if credential socket exists, create a cluster for it
    	if proxy.Metadata != nil && proxy.Metadata.Raw[security.CredentialMetaDataName] == "true" {
    		clusters = append(clusters, cb.buildExternalSDSCluster(security.CredentialNameSocketPath))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.31.md

    - Removing the last remaining in-tree gcp cloud provider and credential provider. Please use the external cloud provider and credential provider from https://github.com/kubernetes/cloud-provider-gcp instead. ([#124519](https://github.com/kubernetes/kubernetes/pull/124519), [@dims](https://github.com/dims)) [SIG API Machinery, Apps, Auth, Autoscaling,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

      @type record_transformer
      enable_ruby true
      <record>
        "logging.googleapis.com/local_resource_id" ${"k8s_node.NODE_NAME"}
      </record>
    </filter>
    '@
    
    # Downloads the out-of-tree kubelet image credential provider binaries.
    function DownloadAndInstall-AuthProviderGcpBinary {
      if ("${env:ENABLE_AUTH_PROVIDER_GCP}" -eq "true") {
        $filename = 'auth-provider-gcp.exe'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top