Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for subjectAltNames (0.52 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/services_test.go

    					Addresses: []string{"1.2.3.4"},
    					Hosts:     []string{"a.example.com", "b.example.com"},
    					Ports: []*networking.ServicePort{{
    						Number: 80,
    						Name:   "http",
    					}},
    					SubjectAltNames: []string{"san1"},
    					Resolution:      networking.ServiceEntry_DNS,
    				},
    			},
    			result: []*workloadapi.Service{
    				{
    					Name:      "name",
    					Namespace: "ns",
    					Hostname:  "a.example.com",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/services.go

    			Name:            svc.Name,
    			Namespace:       svc.Namespace,
    			Hostname:        h,
    			Addresses:       addresses,
    			Ports:           ports,
    			Waypoint:        waypointAddress,
    			SubjectAltNames: svc.Spec.SubjectAltNames,
    		})
    	}
    	return res
    }
    
    func (a *index) constructService(svc *v1.Service, w *Waypoint) *workloadapi.Service {
    	ports := make([]*workloadapi.Port, 0, len(svc.Spec.Ports))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder_test.go

    					Tls: &networking.ClientTLSSettings{
    						Mode:            networking.ClientTLSSettings_SIMPLE,
    						CaCertificates:  constants.RootCertFilename,
    						Sni:             "foo.default.svc.cluster.local",
    						SubjectAltNames: []string{"foo.default.svc.cluster.local"},
    					},
    				},
    			},
    			enableAutoSni:            false,
    			enableVerifyCertAtClient: false,
    			expectTLSContext: &tls.UpstreamTlsContext{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                          during TLS handshake.
                                        type: string
                                      subjectAltNames:
                                        description: A list of alternate names to verify
                                          the subject identity in the certificate.
                                        items:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  5. manifests/charts/base/crds/crd-all.gen.yaml

                                          during TLS handshake.
                                        type: string
                                      subjectAltNames:
                                        description: A list of alternate names to verify
                                          the subject identity in the certificate.
                                        items:
    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. pkg/workloadapi/workload.pb.go

    	// Optional; if set, the SAN to verify for TLS connections.
    	// Typically, this is not set and per-workload identity is used to verify
    	// TODO: support this field
    	SubjectAltNames []string `protobuf:"bytes,6,rep,name=subject_alt_names,json=subjectAltNames,proto3" json:"subject_alt_names,omitempty"`
    	// Waypoint is the waypoint proxy for this service. When set, all incoming requests must go
    	// through the waypoint.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    					} else {
    						errs = AppendValidation(errs, agent.ValidatePort(port))
    					}
    				}
    			}
    
    			if i.Tls != nil {
    				if len(i.Tls.SubjectAltNames) > 0 {
    					errs = AppendValidation(errs, fmt.Errorf("sidecar: subjectAltNames is not supported in ingress tls"))
    				}
    				if i.Tls.HttpsRedirect {
    					errs = AppendValidation(errs, fmt.Errorf("sidecar: httpsRedirect is not supported"))
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    signer defines:\n 1. Trust distribution: how trust (CA bundles) are distributed.\n 2. Permitted subjects: and behavior when a disallowed subject is requested.\n 3. Required, permitted, or forbidden x509 extensions in the request (including whether subjectAltNames are allowed, which types, restrictions on allowed values) and behavior when a disallowed extension is requested.\n 4. Required, permitted, or forbidden key usages / extended key usages.\n 5. Expiration/certificate lifetime: whether it is fixed...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  9. api/openapi-spec/swagger.json

    signer defines:\n 1. Trust distribution: how trust (CA bundles) are distributed.\n 2. Permitted subjects: and behavior when a disallowed subject is requested.\n 3. Required, permitted, or forbidden x509 extensions in the request (including whether subjectAltNames are allowed, which types, restrictions on allowed values) and behavior when a disallowed extension is requested.\n 4. Required, permitted, or forbidden key usages / extended key usages.\n 5. Expiration/certificate lifetime: whether it is fixed...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top