Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for mtlsMode (0.16 sec)

  1. 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)
  2. pilot/pkg/security/authn/utils/utils.go

    // BuildInboundTLS returns the TLS context corresponding to the mTLS mode.
    func BuildInboundTLS(mTLSMode model.MutualTLSMode, node *model.Proxy,
    	protocol networking.ListenerProtocol, trustDomainAliases []string, minTLSVersion tls.TlsParameters_TlsProtocol,
    	mc *meshconfig.MeshConfig,
    ) *tls.DownstreamTlsContext {
    	if mTLSMode == model.MTLSDisable || mTLSMode == model.MTLSUnknown {
    		return nil
    	}
    	ctx := &tls.DownstreamTlsContext{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. tests/integration/security/testdata/reachability/workload-peer-authn-port-override.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
          app: {{ .To.ServiceName }}
      mtls:
        mode: {{ .MTLSMode }}
      portLevelMtls:
        {{ (.To.PortForName `http`).WorkloadPort }}:
          mode: {{ .MTLSModeOverride }}
        {{ (.To.PortForName `http2`).WorkloadPort }}:
          mode: {{ .MTLSModeOverride }}
        {{ (.To.PortForName `https`).WorkloadPort }}:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 648 bytes
    - Viewed (0)
  4. tests/integration/security/testdata/reachability/workload-peer-authn.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
          app: {{ .To.ServiceName }}
      mtls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 205 bytes
    - Viewed (0)
  5. tests/integration/security/testdata/reachability/migration.yaml.tmpl

      - name: "vistio"
        labels:
          version: "vistio"
    {{- if ne .TLSMode "" }}
        trafficPolicy:
          tls:
            mode: {{ .TLSMode }}
    {{- end }}
      - name: "vlegacy"
        labels:
          version: "vlegacy"
    {{- if ne .TLSMode "" }}
        trafficPolicy:
          tls:
            mode: {{ .TLSMode }}
      trafficPolicy:
        tls:
          mode: {{ .TLSMode }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 975 bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/endpoint_builder.go

    	}
    
    	return &model.IstioEndpoint{
    		Labels:                b.labels,
    		ServiceAccount:        b.serviceAccount,
    		Locality:              b.locality,
    		TLSMode:               b.tlsMode,
    		Address:               endpointAddress,
    		EndpointPort:          uint32(endpointPort),
    		ServicePortName:       svcPortName,
    		Network:               networkID,
    		WorkloadName:          b.workloadName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. pilot/pkg/xds/testdata/benchmarks/tcp.yaml

    spec:
      hosts:
      - example.com
      ports:
      - number: 7070
        name: tcp
        protocol: TCP
      resolution: STATIC
      location: MESH_INTERNAL
      endpoints:
      - address: 1.1.1.1
        labels:
          security.istio.io/tlsMode: istio
    ---
    # Set up .Services number of services.
    {{- range $i := until .Services }}
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: service-{{$i}}
    spec:
      addresses:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 29 02:10:48 UTC 2023
    - 908 bytes
    - Viewed (0)
  8. pilot/pkg/xds/testdata/benchmarks/empty.yaml

        name: https
        protocol: HTTPS
      - number: 9090
        name: auto
        protocol: ""
      resolution: STATIC
      location: MESH_INTERNAL
      endpoints:
      - address: 1.1.1.1
        labels:
          security.istio.io/tlsMode: istio
    ---
    # Set up .Services number of services. Each will have 4 ports (one for each protocol)
    {{- range $i := until .Services }}
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 03:45:12 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. pilot/pkg/xds/endpoints/mtls_checker.go

    // on the DR, original endpoint TLSMode (based on injection of sidecar), and PeerAuthentication settings.
    func (c *mtlsChecker) checkMtlsEnabled(ep *model.IstioEndpoint, isWaypoint bool) bool {
    	if drMode := c.destinationRule; drMode != nil {
    		return *drMode == networkingapi.ClientTLSSettings_ISTIO_MUTUAL
    	}
    
    	// if endpoint has no sidecar or explicitly tls disabled by "security.istio.io/tlsMode" label.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. pilot/pkg/xds/testdata/benchmarks/auto.yaml

    spec:
      hosts:
      - example.com
      ports:
      - number: 7070
        name: auto
        protocol: ""
      resolution: STATIC
      location: MESH_INTERNAL
      endpoints:
      - address: 1.1.1.1
        labels:
          security.istio.io/tlsMode: istio
    ---
    # Set up .Services number of services.
    {{- range $i := until .Services }}
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: service-{{$i}}
    spec:
      addresses:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 29 02:10:48 UTC 2023
    - 908 bytes
    - Viewed (0)
Back to top