Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 154 for seamless (0.27 sec)

  1. pkg/kube/multicluster/secretcontroller_test.go

    }
    
    func (i *informerHandler[T]) Close() {
    	i.client.ShutdownHandlers()
    }
    
    func (i *informerHandler[T]) HasSynced() bool {
    	return i.client.HasSynced()
    }
    
    // Test our (lack of) ability to do seamless updates of a cluster.
    // Tracking improvements in https://github.com/istio/istio/issues/49349
    func TestSeamlessMigration(t *testing.T) {
    	stop := make(chan struct{})
    	c := buildTestController(t, true)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. releasenotes/notes/terminating-headless.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 47348
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:21 UTC 2023
    - 213 bytes
    - Viewed (0)
  3. releasenotes/notes/auto-mtls-headless.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
    - 24319
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 190 bytes
    - Viewed (0)
  4. releasenotes/notes/headless-auto-http.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - 34679
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 20 17:39:20 UTC 2021
    - 214 bytes
    - Viewed (0)
  5. releasenotes/notes/headless-endpoint-update.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
      - 26617
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 19 15:10:39 UTC 2020
    - 198 bytes
    - Viewed (0)
  6. releasenotes/notes/drop-headless.yaml

    John Howard <******@****.***> 1708755516 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 06:18:36 UTC 2024
    - 164 bytes
    - Viewed (0)
  7. pkg/dns/server/name_table_test.go

    						Ips:       []string{"19.6.7.8"},
    						Registry:  "Kubernetes",
    						Shortname: "pod3.headless-svc",
    						Namespace: "testns",
    					},
    					"pod4.headless-svc.testns.svc.cluster.local": {
    						Ips:       []string{"9.16.7.8"},
    						Registry:  "Kubernetes",
    						Shortname: "pod4.headless-svc",
    						Namespace: "testns",
    					},
    					"headless-svc.testns.svc.cluster.local": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. pkg/test/framework/features/allowlist.txt

    cni,TestCNIReachability/global-mtls-on/headless->http://headless:http
    cni,TestCNIReachability/global-mtls-on/headless->http://multiversion:http
    cni,TestCNIReachability/global-mtls-on/headless->http://naked:http
    cni,TestCNIReachability/global-mtls-on/headless->tcp://a:tcp
    cni,TestCNIReachability/global-mtls-on/headless->tcp://b:tcp
    cni,TestCNIReachability/global-mtls-on/headless->tcp://multiversion:tcp
    cni,TestCNIReachability/global-mtls-on/headless->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)
  9. pkg/test/framework/components/echo/match/matchers.go

    }
    
    // NotNaked is equivalent to Not(Naked)
    var NotNaked = Not(Naked)
    
    // Headless matches instances that are backed by headless services.
    var Headless Matcher = func(i echo.Instance) bool {
    	return i.Config().Headless
    }
    
    // NotHeadless is equivalent to Not(Headless)
    var NotHeadless = Not(Headless)
    
    // ProxylessGRPC matches instances that are Pods with a SidecarInjectTemplate annotation equal to grpc.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/echotest/filters.go

    	}
    	return match.NotWaypoint
    }
    
    // reachableHeadlessDestinations filters out headless services that aren't in the same cluster
    // TODO(stevenctl): headless across-networks https://github.com/istio/istio/issues/38327
    func reachableHeadlessDestinations(from echo.Instance) match.Matcher {
    	excluded := match.And(
    		match.Headless,
    		match.Not(match.Network(from.Config().Cluster.NetworkName())))
    	return match.Not(excluded)
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top