Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 162 for TLSMode (0.12 sec)

  1. pilot/pkg/xds/testdata/benchmarks/tls.yaml

    spec:
      hosts:
      - example.com
      ports:
      - number: 7070
        name: tls
        protocol: TLS
      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)
  2. pilot/pkg/xds/testdata/benchmarks/http.yaml

    spec:
      hosts:
      - example.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      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
    - 907 bytes
    - Viewed (0)
  3. tests/integration/security/testdata/reachability/workload-dr.yaml.tmpl

    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: "{{ .To.ServiceName }}"
    spec:
      host: "{{ .To.ClusterLocalFQDN }}"
      trafficPolicy:
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 200 bytes
    - Viewed (0)
  4. pilot/pkg/networking/util/util_test.go

    		},
    	}
    
    	cases := []struct {
    		name    string
    		tlsMode networking.ClientTLSSettings_TLSmode
    		meta    *core.Metadata
    		want    *core.Metadata
    	}{
    		{
    			name:    "ISTIO_MUTUAL TLS",
    			tlsMode: networking.ClientTLSSettings_ISTIO_MUTUAL,
    			meta:    nil,
    			want:    nil,
    		},
    		{
    			name:    "DISABLED TLS",
    			tlsMode: networking.ClientTLSSettings_DISABLE,
    			meta:    nil,
    			want:    nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    	svc := services[0] // default
    	for _, s := range services {
    		if string(s.Hostname) == address {
    			svc = s
    			break
    		}
    	}
    	tlsMode := model.DisabledTLSModeLabel
    	if mtlsMode == MTLS || mtlsMode == MTLSUnlabelled {
    		tlsMode = model.IstioMutualTLSModeLabel
    	}
    	if mtlsMode == MTLS {
    		if svcLabels == nil {
    			svcLabels = map[string]string{}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/util/workloadinstances/index_test.go

    		Endpoint: &model.IstioEndpoint{
    			Address:        "2.2.2.2",
    			Labels:         map[string]string{"app": "wle"},
    			ServiceAccount: spiffe.MustGenSpiffeURIForTrustDomain("cluster.local", selector.Name, "default"),
    			TLSMode:        model.IstioMutualTLSModeLabel,
    		},
    	}
    
    	wi2 := &model.WorkloadInstance{
    		Name:      "some-other-name",
    		Namespace: selector.Namespace,
    		Endpoint: &model.IstioEndpoint{
    			Address:        "3.3.3.3",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. tests/integration/security/testdata/reachability/global-dr.yaml.tmpl

    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: "default"
    spec:
      host: "*"
      trafficPolicy:
        tls:
          mode: {{ .TLSMode }}
    ---
    # Apply a local policy to the system namespace to turn this off
    # Otherwise, the eastwest gateway will be impacted
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: "eastwest-opt-out"
    spec:
      exportTo: [.]
      host: "*"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 474 bytes
    - Viewed (0)
  8. pilot/pkg/xds/testdata/benchmarks/externalname.yaml

        - example.com
      ports:
        - number: 80
          name: http
          protocol: HTTP
      resolution: STATIC
      location: MESH_INTERNAL
      endpoints:
        - address: 1.1.1.1
          labels:
            security.istio.io/tlsMode: istio
    {{- range $i := until .Services }}
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: service-{{$i}}
    spec:
      type: ExternalName
      externalName: random-{{$i}}.example.com
      ports:
        - port: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 27 03:08:29 UTC 2023
    - 632 bytes
    - Viewed (0)
  9. istioctl/pkg/describe/testdata/describe/http_config.json

                    }
                  }
                ],
                "transport_socket_matches": [
                  {
                    "name": "tlsMode-istio",
                    "match": {
                      "tlsMode": "istio"
                    },
                    "transport_socket": {
                      "name": "envoy.transport_sockets.tls",
                      "typed_config": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/hello-mtls-not-ready.yaml

    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      template:
        metadata:
          labels:
            app: hello
            security.istio.io/tlsMode: "disabled"
            tier: backend
            track: stable
        spec:
          containers:
            - name: hello
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
                - name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 30 03:25:35 UTC 2019
    - 506 bytes
    - Viewed (0)
Back to top