Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 196 for mtls (0.04 sec)

  1. pilot/pkg/xds/endpoints/mtls_checker.go

    	if tp == nil {
    		return nil
    	}
    	var mode *networkingapi.ClientTLSSettings_TLSmode
    	if tp.Tls != nil {
    		mode = &tp.Tls.Mode
    	}
    	// if there is a port-level setting matching this cluster
    	for _, portSettings := range tp.GetPortLevelSettings() {
    		if int(portSettings.GetPort().GetNumber()) == port && portSettings.Tls != nil {
    			mode = &portSettings.Tls.Mode
    			break
    		}
    	}
    	return mode
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. pilot/pkg/xds/testdata/benchmarks/strict.yaml

        name: auto
        protocol: ""
      resolution: STATIC
      endpoints:
      - address: 1.1.1.1
    ---
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: default
    spec:
      mtls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 29 02:10:48 UTC 2023
    - 594 bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/destinationrule-compound-mutual-simple.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-mtls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        tls:
          mode: SIMPLE
          clientCertificate: /etc/certs/myclientcert.pem
          privateKey: /etc/certs/client_private_key.pem
        portLevelSettings:
          - port:
              number: 443
            tls:
              mode: MUTUAL
              clientCertificate: /etc/certs/myclientcert.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 638 bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

        "pilot.ingress" "meshConfig.ingressService, meshConfig.ingressControllerMode, and meshConfig.ingressClass"
        "global.mtls.enabled" "the PeerAuthentication resource"
        "global.mtls.auto" "meshConfig.enableAutoMtls"
        "global.tracer.lightstep.address" "meshConfig.defaultConfig.tracing.lightstep.address"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/destinationrule-with-ca.yaml

    kind: DestinationRule
    metadata:
      name: db-mtls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        tls:
          mode: MUTUAL
          clientCertificate: /etc/certs/myclientcert.pem
          privateKey: /etc/certs/client_private_key.pem
          caCertificates: /etc/certs/root.pem
        portLevelSettings:
          - port:
              number: 443
            tls:
              mode: SIMPLE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 723 bytes
    - Viewed (0)
  6. releasenotes/notes/50132.yaml

        For this to work, it must be configured as a `ClusterIP` Service with
        redirection enabled. This is colloquially referred to as a "gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 659 bytes
    - Viewed (0)
  7. tests/integration/ambient/testdata/automtls-partial-sidecar-dr-mutual.yaml

    spec:
      host: "multiversion"
      subsets:
      - name: "vistio"
        labels:
          version: "vistio"
        trafficPolicy:
          tls:
            mode: ISTIO_MUTUAL
      - name: "vlegacy"
        labels:
          version: "vlegacy"
        trafficPolicy:
          tls:
            mode: ISTIO_MUTUAL
      trafficPolicy:
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/input/gateways.yaml

                ports:
                ## You can add custom gateway ports - google ILB default quota is 5 ports,
                - port: 15011
                  name: grpc-pilot-mtls
                - port: 8060
                  targetPort: 8060
                  name: tcp-citadel-grpc-tls
                # Port 5353 is forwarded to kube-dns
                - port: 5353
                  name: tcp-dns
              overlays:
                - kind: Deployment
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. tests/integration/ambient/testdata/automtls-partial-sidecar-dr-disable.yaml

    spec:
      host: "multiversion"
      subsets:
      - name: "vistio"
        labels:
          version: "vistio"
        trafficPolicy:
          tls:
            mode: DISABLE
      - name: "vlegacy"
        labels:
          version: "vlegacy"
        trafficPolicy:
          tls:
            mode: DISABLE
      trafficPolicy:
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. cluster/gce/gci/apiserver_etcd_test.go

    				}
    			}
    		})
    	}
    }
    
    func TestTLSFlags(t *testing.T) {
    	testCases := []struct {
    		desc string
    		env  kubeAPIServeETCDEnv
    		want []string
    	}{
    		{
    			desc: "mTLS enabled",
    			env: kubeAPIServeETCDEnv{
    				CAKey:             "CAKey",
    				CACert:            "CACert",
    				CACertPath:        "CACertPath",
    				APIServerKey:      "APIServerKey",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 18 11:14:24 UTC 2021
    - 5.6K bytes
    - Viewed (0)
Back to top