Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 48 for credentialName (0.28 sec)

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

    	if tls == nil {
    		return nil, nil
    	}
    	// Hack to avoid egress sds cluster config generation for sidecar when
    	// CredentialName is set in DestinationRule without a workloadSelector.
    	// We do not want to support CredentialName setting in non workloadSelector based DestinationRules, because
    	// that would result in the CredentialName being supplied to all the sidecars which the DestinationRule is scoped to,
    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. pkg/config/analysis/analyzers/util/find_errorline_utils.go

    	// Path for selector in Gateway.
    	// Required parameters: selector label.
    	GatewaySelector = "{.spec.selector.%s}"
    
    	// Path for credentialName.
    	// Required parameters: server index.
    	CredentialName = "{.spec.servers[%d].tls.credentialName}"
    
    	// Path for Port in ServiceEntry.
    	// Required parameters: port index.
    	ServiceEntryPort = "{.spec.ports[%d].name}"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. releasenotes/notes/51568.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl  
    issue:
    - 51567
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 194 bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/util/find_errorline_utils_test.go

    	"{.spec.containers[0].image}":                                   1,
    	"{.spec.rules[0].from[0].source.namespaces[0]}":                 1,
    	"{.spec.selector.test}":                                         1,
    	"{.spec.servers[0].tls.credentialName}":                         1,
    	"{.networks.test.endpoints[0]}":                                 1,
    	"{.spec.trafficPolicy.tls.caCertificates}":                      1,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. releasenotes/notes/credential-name-support-egress-sidecar.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
       - |
         **Added** the ability to set credentialName based secret configuration
         at sidecars for egress TLS traffic when WorkloadSelector is specified in `DestinationRule`,
         provided the sidecar has permission to list secrets in the namespace where it resides.
    docs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 14 16:56:05 UTC 2022
    - 435 bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway_test.go

    			name: "tls mode ISTIO_MUTUAL, with credentialName",
    			server: &networking.Server{
    				Hosts: []string{"httpbin.example.com"},
    				Port: &networking.Port{
    					Protocol: string(protocol.HTTPS),
    				},
    				Tls: &networking.ServerTLSSettings{
    					Mode:           networking.ServerTLSSettings_ISTIO_MUTUAL,
    					CredentialName: "ignored",
    				},
    			},
    			result: &auth.DownstreamTlsContext{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  7. pkg/config/validation/agent/validation.go

    		if settings.Mode == networking.ClientTLSSettings_SIMPLE {
    			// In tls simple mode, we can specify ca cert by CaCertificates or CredentialName.
    			if settings.CaCertificates != "" || settings.CredentialName != "" || settings.SubjectAltNames != nil {
    				errs = AppendErrors(errs, fmt.Errorf("cannot specify CaCertificates or CredentialName or SubjectAltNames when InsecureSkipVerify is set true"))
    			}
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/reference-policy-tls.yaml.golden

      namespace: istio-system
    spec:
      servers:
      - hosts:
        - cert/cert1.domain.example
        port:
          name: default
          number: 443
          protocol: HTTPS
        tls:
          credentialName: kubernetes-gateway://cert/cert
          mode: SIMPLE
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
        internal.istio.io/parents: HTTPRoute/http.cert
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. tests/fuzz/testdata/FuzzConfigValidation2/fuzz_config_validation2.dict

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 07 17:07:53 UTC 2021
    - 2K bytes
    - Viewed (0)
  10. pkg/config/gateway/gateway_test.go

    				},
    				Tls: &v1alpha3.ServerTLSSettings{CredentialName: "cert", Mode: v1alpha3.ServerTLSSettings_MUTUAL},
    			},
    			expected: false,
    		},
    		{
    			name: "tls and HTTP",
    			server: &v1alpha3.Server{
    				Port: &v1alpha3.Port{
    					Number:   80,
    					Protocol: string(protocol.HTTP),
    					Name:     "https",
    				},
    				Tls: &v1alpha3.ServerTLSSettings{CredentialName: "cert", Mode: v1alpha3.ServerTLSSettings_MUTUAL},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 26 05:53:25 UTC 2022
    - 10.5K bytes
    - Viewed (0)
Back to top