Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 69 for Naked (0.04 sec)

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

    cni,TestCNIReachability/global-mtls-on/naked->http://headless:http
    cni,TestCNIReachability/global-mtls-on/naked->http://multiversion:http
    cni,TestCNIReachability/global-mtls-on/naked->http://naked:http
    cni,TestCNIReachability/global-mtls-on/naked->tcp://a:tcp
    cni,TestCNIReachability/global-mtls-on/naked->tcp://b:tcp
    cni,TestCNIReachability/global-mtls-on/naked->tcp://multiversion:tcp
    cni,TestCNIReachability/global-mtls-on/naked->tcp://naked:tcp
    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. tests/integration/security/ca_custom_root/main_test.go

    		case namespacedName.Name == "server":
    			server = apps.EchoNamespace.All[index]
    		case namespacedName.Name == "server-naked-foo":
    			serverNakedFoo = apps.EchoNamespace.All[index]
    		case namespacedName.Name == "server-naked-bar":
    			serverNakedBar = apps.EchoNamespace.All[index]
    		case namespacedName.Name == "server-naked-foo-alt":
    			serverNakedFooAlt = apps.EchoNamespace.All[index]
    		}
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. tests/integration/security/ca_custom_root/trust_domain_validation_test.go

    					// Request from trust domain foo should be allowed.
    					verify(t, naked, "bar", httpMTLS, scheme.HTTPS, false)
    					verify(t, naked, "bar", tcpMTLS, scheme.TCP, false)
    					verify(t, naked, "bar", passThrough, scheme.TCP, false)
    					verify(t, naked, "foo", httpMTLS, scheme.HTTPS, true)
    					verify(t, naked, "foo", tcpMTLS, scheme.TCP, true)
    					verify(t, naked, "foo", passThrough, scheme.TCP, true)
    				})
    			}
    		})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. tests/integration/security/ca_custom_root/trust_domain_alias_secure_naming_test.go

    // 3. Two naked server workloads with custom certs whose URI SAN have different SPIFFE trust domains.
    // 4. PeerAuthentication with strict mtls, to enforce the mtls connection.
    // 5. DestinaitonRule with tls ISTIO_MUTUAL mode, because Istio auto mTLS will let client send plaintext to naked servers by default.
    // 6. MeshConfig.TrustDomainAliases contains one of the trust domain "server-naked-foo".
    //
    // Expectation:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/echotest/filters.go

    }
    
    // reachableNakedDestinations filters out naked instances that aren't on the same network.
    // While External services are considered "naked", we won't see 500s due to different loadbalancing.
    func reachableNakedDestinations(from echo.Instance) match.Matcher {
    	srcNw := from.Config().Cluster.NetworkName()
    	excluded := match.And(
    		// Only exclude naked if all subsets are naked. If an echo instance contains a mix of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/echotest/filters_test.go

    	// naked pod (uninjected)
    	naked1 = &fakeInstance{Cluster: cls1, Namespace: echo1NS, Service: "naked", Subsets: []echo.SubsetConfig{{
    		Annotations: map[string]string{annotation.SidecarInject.Name: "false"},
    	}}}
    	naked2 = &fakeInstance{Cluster: cls2, Namespace: echo1NS, Service: "naked", Subsets: []echo.SubsetConfig{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. tests/integration/security/util/reachability/context.go

    												t.Skip("https://github.com/istio/istio/issues/37307")
    											}
    
    											from.CallOrFail(t, opts)
    										})
    								}
    							}
    						}
    					})
    				}
    			}
    		})
    	}
    }
    
    // Exclude calls from naked->VM since naked has no Envoy
    // However, no endpoint exists for VM in k8s, so calls from naked->VM will fail, regardless of mTLS
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 21:20:43 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/match/matchers.go

    var External Matcher = func(i echo.Instance) bool {
    	return i.Config().IsExternal()
    }
    
    // NotExternal is equivalent to Not(External)
    var NotExternal = Not(External)
    
    // Naked matches instances with any subset marked with SidecarInject equal to false.
    var Naked Matcher = func(i echo.Instance) bool {
    	return i.Config().IsNaked()
    }
    
    // AllNaked matches instances where every subset has SidecarInject set to false.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/workloadclass.go

    type WorkloadClass = string
    
    const (
    	Proxyless   WorkloadClass = "proxyless"
    	VM          WorkloadClass = "vm"
    	Sotw        WorkloadClass = "sotw"
    	TProxy      WorkloadClass = "tproxy"
    	Naked       WorkloadClass = "naked"
    	External    WorkloadClass = "external"
    	StatefulSet WorkloadClass = "statefulset"
    	Headless    WorkloadClass = "headless"
    	Captured    WorkloadClass = "captured"
    	Waypoint    WorkloadClass = "waypoint"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/kube/testdata/multiversion.yaml

      selector:
        matchLabels:
          app: multiversion
          version: v-istio
      template:
        metadata:
          labels:
            app: multiversion
            version: v-istio
            test.istio.io/class: naked
          annotations:
            prometheus.io/scrape: "true"
            prometheus.io/port: "15014"
        spec:
          imagePullSecrets:
          - name: myregistrykey
          containers:
          - name: istio-proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top