Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for subjectAltNames (0.24 sec)

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

    		// Use subject alt names specified in service entry if TLS settings does not have subject alt names.
    		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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json

              }
            }
          },
          "subjectAltNames": []
        },
        "/10.96.0.1": {
          "name": "kubernetes",
          "namespace": "default",
          "hostname": "kubernetes.default.svc.cluster.local",
          "vips": [
            "/10.96.0.1"
          ],
          "ports": {
            "443": 6443
          },
          "endpoints": {},
          "subjectAltNames": []
        },
        "/10.96.71.36": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. pkg/apis/certificates/helpers.go

    	dnsSANNotAllowedErr           = fmt.Errorf("DNS subjectAltNames are not allowed")
    	emailSANNotAllowedErr         = fmt.Errorf("Email subjectAltNames are not allowed")
    	ipSANNotAllowedErr            = fmt.Errorf("IP subjectAltNames are not allowed")
    	uriSANNotAllowedErr           = fmt.Errorf("URI subjectAltNames are not allowed")
    )
    
    var (
    	kubeletServingRequiredUsages = sets.NewString(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 4K bytes
    - Viewed (0)
  4. 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)
  5. pilot/pkg/security/model/authentication.go

    					tlsOpts.CredentialName+SdsCaSuffix, credentialSocketExist),
    			},
    		}
    	} else if len(tlsOpts.SubjectAltNames) > 0 {
    		tlsContext.ValidationContextType = &tls.CommonTlsContext_ValidationContext{
    			ValidationContext: &tls.CertificateValidationContext{
    				MatchSubjectAltNames: util.StringToExactMatch(tlsOpts.SubjectAltNames),
    			},
    		}
    	}
    }
    
    func EnforceGoCompliance(ctx *gotls.Config) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_tls_test.go

    		Mode:            networking.ClientTLSSettings_ISTIO_MUTUAL,
    		SubjectAltNames: []string{"custom.foo.com"},
    		Sni:             "custom.foo.com",
    	}
    	mutualTLSSettingsWithCerts := &networking.ClientTLSSettings{
    		Mode:              networking.ClientTLSSettings_MUTUAL,
    		CaCertificates:    "root-cert.pem",
    		ClientCertificate: "cert-chain.pem",
    		PrivateKey:        "key.pem",
    		SubjectAltNames:   []string{"custom.foo.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)
  7. tests/integration/security/ca_custom_root/secure_naming_test.go

      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
          subjectAltNames:
          - "spiffe://cluster.local/ns/NS/sa/default"
    `
    	correctIdentityDR = `apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: "service-b-dr"
    spec:
      host: "b.NS.svc.cluster.local"
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
          subjectAltNames:
          - "spiffe://cluster.local/ns/NS/sa/b"
    `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. pkg/model/proxy_test.go

    							Address: "address",
    							TlsSettings: &v1alpha3.ClientTLSSettings{
    								SubjectAltNames: []string{"san"},
    							},
    						},
    					}),
    				},
    			},
    			// nolint: lll
    			`{"PROXY_CONFIG":{"configPath":"foo","drainDuration":"5s","controlPlaneAuthPolicy":"MUTUAL_TLS","envoyAccessLogService":{"address":"address","tlsSettings":{"subjectAltNames":["san"]}}}}`,
    			model.BootstrapNodeMetadata{
    				NodeMetadata: model.NodeMetadata{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. releasenotes/notes/dr-san-validation.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 40801
    releaseNotes:
    - |
      **Fixed** an issue with where a `DestinationRule` applying to multiple services could incorrectly apply an unexpected `subjectAltNames` field.
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 08 17:32:33 UTC 2022
    - 357 bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_traffic_policy_test.go

    		Mode:            networking.ClientTLSSettings_ISTIO_MUTUAL,
    		SubjectAltNames: []string{"custom.foo.com"},
    		Sni:             "custom.foo.com",
    	}
    	mutualTLSSettingsWithCerts := &networking.ClientTLSSettings{
    		Mode:              networking.ClientTLSSettings_MUTUAL,
    		CaCertificates:    "root-cert.pem",
    		ClientCertificate: "cert-chain.pem",
    		PrivateKey:        "key.pem",
    		SubjectAltNames:   []string{"custom.foo.com"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top