Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for credentialName (0.19 sec)

  1. pilot/pkg/networking/core/cluster_tls_test.go

    				},
    				err: nil,
    			},
    		},
    		{
    			name: "tls mode SIMPLE, with CredentialName specified",
    			opts: &buildClusterOpts{
    				mutable: newTestCluster(),
    			},
    			tls: &networking.ClientTLSSettings{
    				Mode:            networking.ClientTLSSettings_SIMPLE,
    				CredentialName:  credentialName,
    				SubjectAltNames: []string{"SAN"},
    				Sni:             "some-sni.com",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  2. 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)
  3. pilot/pkg/config/kube/gateway/conversion.go

    				Message: fmt.Sprintf(
    					"certificateRef %v/%v not accessible to a Gateway in namespace %q (missing a ReferenceGrant?)",
    					tls.CertificateRefs[0].Name, credNs, namespace,
    				),
    			}
    		}
    		out.CredentialName = cred
    	case k8s.TLSModePassthrough:
    		out.Mode = istio.ServerTLSSettings_PASSTHROUGH
    		if isAutoPassthrough {
    			out.Mode = istio.ServerTLSSettings_AUTO_PASSTHROUGH
    		}
    	}
    	return out, nil
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top