Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for credentialName (0.3 sec)

  1. pilot/pkg/config/kube/ingress/conversion.go

    			},
    			Hosts: tls.Hosts,
    			Tls: &networking.ServerTLSSettings{
    				HttpsRedirect:  false,
    				Mode:           networking.ServerTLSSettings_SIMPLE,
    				CredentialName: tls.SecretName,
    			},
    		})
    	}
    
    	gateway.Servers = append(gateway.Servers, &networking.Server{
    		Port: &networking.Port{
    			Number:   80,
    			Protocol: string(protocol.HTTP),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. istioctl/pkg/precheck/precheck.go

    		if tls == nil {
    			return false
    		}
    		if tls.Mode == networking.ClientTLSSettings_DISABLE || tls.Mode == networking.ClientTLSSettings_ISTIO_MUTUAL {
    			return false
    		}
    		return tls.CaCertificates == "" && tls.CredentialName == "" && !tls.InsecureSkipVerify.GetValue()
    	}
    	checkSNI := func(tls *networking.ClientTLSSettings) bool {
    		if tls == nil {
    			return false
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                      clientCertificate:
                                        description: REQUIRED if mode is `MUTUAL`.
                                        type: string
                                      credentialName:
                                        description: The name of the secret that holds
                                          the TLS certs for the client including the CA
                                          certificates.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  4. pkg/security/security.go

    	// SDSExternalClusterName is the name of the cluster for external SDS connections which is defined via CredentialNameSocketPath
    	SDSExternalClusterName = "sds-external"
    
    	// SDSExternalCredentialPrefix is the prefix for the credentialName which will utilize external SDS connections defined via CredentialNameSocketPath
    	SDSExternalCredentialPrefix = "sds://"
    
    	// WorkloadIdentityCredentialsPath is the well-known path to a folder with workload certificate files.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. manifests/charts/base/crds/crd-all.gen.yaml

                                      clientCertificate:
                                        description: REQUIRED if mode is `MUTUAL`.
                                        type: string
                                      credentialName:
                                        description: The name of the secret that holds
                                          the TLS certs for the client including the CA
                                          certificates.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway_simulation_test.go

    			config: createGateway("gateway", "", `port:
      number: 443
      name: https
      protocol: HTTPS
    hosts:
    - "example.com"
    tls:
      httpsRedirect: true
      mode: SIMPLE
      credentialName: test`) + simpleRoute,
    			calls: []simulation.Expect{
    				{
    					Name: "request",
    					Call: simulation.Call{
    						Port:       443,
    						HostHeader: "example.com",
    						Protocol:   simulation.HTTP,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_builder_test.go

    					},
    					ValidationContextType: &tls.CommonTlsContext_ValidationContext{},
    				},
    			},
    		},
    		{
    			name:        "With tls mode simple and CredentialName, InsecureSkipVerify is set true and env VERIFY_CERTIFICATE_AT_CLIENT is true",
    			cluster:     &cluster.Cluster{Name: "foo", ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_EDS}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                      clientCertificate:
                                        description: REQUIRED if mode is `MUTUAL`.
                                        type: string
                                      credentialName:
                                        description: The name of the secret that holds
                                          the TLS certs for the client including the CA
                                          certificates.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    caCertificates: description: 'OPTIONAL: The path to the file containing certificate authority certificates to use in verifying a presented server certificate.' type: string clientCertificate: description: REQUIRED if mode is `MUTUAL`. type: string credentialName: description: The name of the secret that holds the TLS certs for the client including the CA certificates. type: string insecureSkipVerify: description: '`insecureSkipVerify` specifies whether the proxy should skip verifying the CA signature...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener.go

    	// If credential name is specified at gateway config, create  SDS config for gateway to fetch key/cert from Istiod.
    	case serverTLSSettings.CredentialName != "":
    		authnmodel.ApplyCredentialSDSToServerCommonTLSContext(ctx.CommonTlsContext, serverTLSSettings, credentialSocketExist)
    	default:
    		certProxy := &model.Proxy{}
    		certProxy.IstioVersion = proxy.IstioVersion
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top