Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for ISTIO_MUTUAL (0.16 sec)

  1. tests/integration/security/ca_custom_root/trust_domain_validation_test.go

          mode: DISABLE
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: server
    spec:
      host: server.%s.svc.cluster.local
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
        portLevelSettings:
        - port:
            number: 8090
          tls:
            mode: DISABLE
        - port:
            number: 8092
          tls:
            mode: DISABLE
    `
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

      servers:
        - port:
            number: 443
            name: https-filebased
            protocol: HTTPS
          hosts:
            - external-service.{{.ServerNamespace}}.svc.cluster.local
          tls:
            mode: ISTIO_MUTUAL
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: egressgateway-for-server-filebased
    spec:
      host: {{.EgressService}}.{{.EgressNamespace}}.svc.cluster.local
      subsets:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. pilot/pkg/security/model/authentication_test.go

    												},
    											},
    										},
    									},
    								},
    								ResourceApiVersion: core.ApiVersion_V3,
    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			name: "ISTIO_MUTUAL SDS without node meta",
    			node: &model.Proxy{
    				Metadata: &model.NodeMetadata{},
    			},
    			validateClient: true,
    			expected: &auth.CommonTlsContext{
    				TlsCertificateSdsSecretConfigs: []*auth.SdsSecretConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:21 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. tests/integration/security/egress_gateway_origination_test.go

        istio: {{.EgressLabel}}
      servers:
        - port:
            number: 443
            name: https-sds
            protocol: HTTPS
          hosts:
          - {{ .to.Config.ClusterLocalFQDN }}
          tls:
            mode: ISTIO_MUTUAL
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: egressgateway-for-server-sds
    spec:
      host: {{.EgressService}}.{{.EgressNamespace}}.svc.cluster.local
      subsets:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                          Valid Options: DISABLE, SIMPLE, MUTUAL, ISTIO_MUTUAL
                                        enum:
                                        - DISABLE
                                        - SIMPLE
                                        - MUTUAL
                                        - ISTIO_MUTUAL
                                        type: string
                                      privateKey:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  6. istioctl/pkg/describe/describe_test.go

    DestinationRule: productpage for "productpage"
       WARNING POD DOES NOT MATCH ANY SUBSETS.  (Non matching subsets v1)
       Matching subsets: 
          (Non-matching subsets v1)
       Traffic Policy TLS Mode: ISTIO_MUTUAL
       Policies: load balancer/connection pool/outlier detection
       Port Level Settings:
        8080:
          TLS Mode: DISABLE
          Policies: load balancer/connection pool/outlier detection
    VirtualService: bookinfo
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  7. manifests/charts/base/crds/crd-all.gen.yaml

                                          Valid Options: DISABLE, SIMPLE, MUTUAL, ISTIO_MUTUAL
                                        enum:
                                        - DISABLE
                                        - SIMPLE
                                        - MUTUAL
                                        - ISTIO_MUTUAL
                                        type: string
                                      privateKey:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  8. pkg/bootstrap/option/convert.go

    				ValidationContextSdsSecretConfig: model.ConstructSdsSecretConfig(model.SDSRootResourceName),
    			},
    		}
    		tlsContext.CommonTlsContext.AlpnProtocols = model.ALPNInMeshH2
    		tlsContext.Sni = tls.Sni
    		// For ISTIO_MUTUAL if custom SNI is not provided, use the default SNI name.
    		if len(tls.Sni) == 0 {
    			tlsContext.Sni = sniName
    		}
    	default:
    		// No TLS.
    		return nil
    	}
    	return tlsContext
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/grpcgen/grpcecho_test.go

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: echo-dr
      namespace: default
    spec:
      host: echo-app.default.svc.cluster.local
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
    ---
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: default
      namespace: default
    spec:
      mtls:
        mode: STRICT
    `,
    	}, echoCfg{version: "v1", tls: true})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. tests/integration/security/pass_through_filter_chain_test.go

    ---
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: {{ .To.ServiceName }}-dr
    spec:
      host: "fake.destination.{{ .To.ServiceName }}"
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
    ---`)).
    						BuildAll(nil, apps.Ns1.All).
    						Apply()
    
    					echotest.New(t, apps.Ns1.All.Instances()).
    						WithDefaultFilters(1, 1).
    						FromMatch(match.NotProxylessGRPC).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top