Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for mTLS (0.06 sec)

  1. pkg/test/framework/features/allowlist.txt

    cni,TestCNIReachability/global-mtls-on/headless->grpc://b:grpc
    cni,TestCNIReachability/global-mtls-on/headless->grpc://headless:grpc
    cni,TestCNIReachability/global-mtls-on/headless->grpc://multiversion:grpc
    cni,TestCNIReachability/global-mtls-on/headless->grpc://naked:grpc
    cni,TestCNIReachability/global-mtls-on/headless->http://a:http
    cni,TestCNIReachability/global-mtls-on/headless->http://b:http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 103.9K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/istio-workload-dashboard.json

              "format": "time_series",
              "intervalFactor": 1,
              "legendFormat": "{{ source_workload }}.{{ source_workload_namespace }} : {{ response_code }} (🔐mTLS)",
              "refId": "A",
              "step": 2
            },
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${datasource}"
              },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 102.7K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/istio-service-dashboard.json

              "format": "time_series",
              "intervalFactor": 1,
              "legendFormat": "{{ source_workload }}.{{ source_workload_namespace }} : {{ response_code }} (🔐mTLS)",
              "refId": "A",
              "step": 2
            },
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${datasource}"
              },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                  name: istio-token
                {{- end }}
                {{- if .Values.global.mountMtlsCerts }}
                # Use the key and cert mounted to /etc/certs/ for the in-cluster mTLS communications.
                - mountPath: /etc/certs/
                  name: istio-certs
                  readOnly: true
                {{- end }}
                - name: istio-podinfo
                  mountPath: /etc/istio/pod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    See more details at: https://istio.io/docs/reference/config/security/peer_authentication.html' properties: mtls: description: Mutual TLS settings for workload. properties: mode: description: Defines the mTLS mode used for peer authentication. enum: - UNSET - DISABLE - PERMISSIVE - STRICT type: string type: object portLevelMtls: additionalProperties: properties: mode: description: Defines the mTLS mode used for peer authentication. enum: - UNSET - DISABLE - PERMISSIVE - STRICT type: string type: object...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway_test.go

    				},
    			}},
    		},
    		{
    			name: "non-http istio-mtls server",
    			configs: []config.Config{
    				{
    					Meta: config.Meta{Name: "non-http-gateway", Namespace: "testns", GroupVersionKind: gvk.Gateway},
    					Spec: &networking.Gateway{
    						Servers: []*networking.Server{
    							{
    								Port:  &networking.Port{Name: "mtls", Number: 15443, Protocol: "TLS"},
    								Hosts: []string{"barone.example.com"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  7. tests/integration/pilot/common/routing.go

    metadata:
      name: %s
    spec:
      selector:
        matchLabels:
          app: %s
      mtls:
        mode: %s
    ---
    `, app, app, mode)
    }
    
    func globalPeerAuthentication(mode string) string {
    	return fmt.Sprintf(`apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: default
    spec:
      mtls:
        mode: %s
    ---
    `, mode)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  8. pkg/config/validation/validation_test.go

    	}{
    		{
    			name:       "empty spec",
    			configName: constants.DefaultAuthenticationPolicyName,
    			in:         &security_beta.PeerAuthentication{},
    			valid:      true,
    		},
    		{
    			name:       "empty mtls with selector of empty labels",
    			configName: constants.DefaultAuthenticationPolicyName,
    			in: &security_beta.PeerAuthentication{
    				Selector: &api.WorkloadSelector{},
    			},
    			valid:   true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

        # GRPC can work with either UDS or mTLS.
        params+=("--mode=http-connect")
        params+=("--server-port=8131")
        params+=("--agent-namespace=")
        params+=("--agent-service-account=")
        params+=("--authentication-audience=")
        # Need to fix ANP code to allow kubeconfig to be set with mtls.
        params+=("--kubeconfig=")
        params+=("--proxy-strategies=destHost,default")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_test.go

    	peerAuthn := &authn_beta.PeerAuthentication{
    		Selector: &selectorpb.WorkloadSelector{
    			MatchLabels: map[string]string{
    				"version": "v1",
    			},
    		},
    		Mtls: &authn_beta.PeerAuthentication_MutualTLS{
    			Mode: authn_beta.PeerAuthentication_MutualTLS_STRICT,
    		},
    	}
    
    	mesh := testMesh()
    	mesh.EnableAutoMtls.Value = true
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top