Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 196 for mtls (1.74 sec)

  1. pilot/pkg/security/authn/utils/utils.go

    	// Compliance for downstream mesh mTLS.
    	authn_model.EnforceCompliance(ctx.CommonTlsContext)
    	return ctx
    }
    
    // GetMinTLSVersion returns the minimum TLS version for workloads based on the mesh config.
    func GetMinTLSVersion(ver meshconfig.MeshConfig_TLSConfig_TLSProtocol) tls.TlsParameters_TlsProtocol {
    	switch ver {
    	case meshconfig.MeshConfig_TLSConfig_TLSV1_3:
    		return tls.TlsParameters_TLSv1_3
    	default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. releasenotes/notes/35111.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    issue:
      - https://github.com/istio/istio/issues/35111
    releaseNotes:
      - |
        **Added** TLS settings to the sidecar API in order to enable TLS/mTLS termination on the sidecar proxy for requests 
        coming from outside the mesh.
    docs:
      - https://docs.google.com/document/d/15Qhr7errbylXEzxxCK7ij_oUpn4E5SFU2uDdl_n2GIc/edit#heading=h.h3lxcxfhqndp
    securityNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 14 00:19:57 UTC 2022
    - 580 bytes
    - Viewed (0)
  3. tests/integration/pilot/grpc_probe_test.go

    			}
    
    			ns := namespace.NewOrFail(t, t, namespace.Config{Prefix: "grpc-probe", Inject: true})
    			// apply strict mtls
    			t.ConfigKube(t.Clusters().Configs()...).YAML(ns.Name(), `
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: grpc-probe-mtls
    spec:
      mtls:
        mode: STRICT`).ApplyOrFail(t)
    
    			for _, testCase := range []struct {
    				name     string
    				rewrite  bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. tests/integration/security/mtls_healthcheck_test.go

    ) {
    	ctx.Helper()
    	wantSuccess := rewrite
    	policyYAML := fmt.Sprintf(`apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: "mtls-strict-for-%v"
    spec:
      selector:
        matchLabels:
          app: "%v"
      mtls:
        mode: STRICT
    `, name, name)
    	ctx.ConfigIstio().YAML(ns.Name(), policyYAML).ApplyOrFail(ctx)
    
    	var healthcheck echo.Instance
    	cfg := echo.Config{
    		Namespace: ns,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. releasenotes/notes/passthrough-tls.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    issue:
    - 31297
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 25 12:04:03 UTC 2021
    - 231 bytes
    - Viewed (0)
  6. tests/integration/security/ca_custom_root/secure_naming_test.go

    // - The certificate issued by CA to the sidecar is as expected and that strict mTLS works as expected.
    // - The plugin CA certs are correctly used in workload mTLS.
    // - The CA certificate in the configmap of each namespace is as expected, which
    //
    //	is used for data plane to control plane TLS authentication.
    //
    // - Secure naming information is respected in the mTLS handshake.
    func TestSecureNaming(t *testing.T) {
    	framework.NewTest(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. internal/config/etcd/help.go

    			Type:        "path",
    		},
    		config.HelpKV{
    			Key:         ClientCert,
    			Description: `client cert for mTLS authentication` + defaultHelpPostfix(ClientCert),
    			Optional:    true,
    			Type:        "path",
    			Sensitive:   true,
    		},
    		config.HelpKV{
    			Key:         ClientCertKey,
    			Description: `client cert key for mTLS authentication` + defaultHelpPostfix(ClientCertKey),
    			Optional:    true,
    			Type:        "path",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 27 03:11:37 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  8. pkg/config/crd/validator_test.go

    kind: PeerAuthentication
    metadata:
      name: default
    spec:
      mtls:
        mode: STRICT
    `, nil); err != nil {
    			t.Fatal(err)
    		}
    	})
    	t.Run("invalid", func(t *testing.T) {
    		if err := validator.ValidateCustomResourceYAML(`
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: default
    spec:
      mtls:
        mode: BAD
    `, nil); err == nil {
    			t.Fatal("expected error but got none")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 15:38:40 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. tests/integration/security/testdata/reachability/global-peer-authn.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: "default"
    spec:
      mtls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 131 bytes
    - Viewed (0)
  10. internal/config/lambda/help.go

    		},
    		config.HelpKV{
    			Key:         target.WebhookClientCert,
    			Description: "client cert for Webhook mTLS auth",
    			Optional:    true,
    			Type:        "string",
    			Sensitive:   true,
    		},
    		config.HelpKV{
    			Key:         target.WebhookClientKey,
    			Description: "client cert key for Webhook mTLS auth",
    			Optional:    true,
    			Type:        "string",
    			Sensitive:   true,
    		},
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 23 14:45:27 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top