Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 195 for Petry (0.03 sec)

  1. pilot/pkg/serviceregistry/kube/controller/multicluster_test.go

    	t.Helper()
    	assert.EventuallyEqual(t, func() int {
    		return len(m.component.All())
    	}, expectedControllerCount, retry.Message(timeoutName), retry.Delay(time.Millisecond*10), retry.Timeout(time.Second*5))
    }
    
    func initController(client kube.CLIClient, ns string, stop <-chan struct{}) *multicluster.Controller {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. releasenotes/notes/50596.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 50596
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 217 bytes
    - Viewed (0)
  3. pilot/pkg/autoregistration/controller_test.go

    		// stop processing the delayed close queue in c1, forces using periodic cleanup
    		close(stop1)
    		stopped1 = true
    		// unfortunately, this retry at worst could be twice as long as the sweep interval
    		retry.UntilSuccessOrFail(t, func() error {
    			return checkNoEntry(store, wgA, p)
    		}, retry.Timeout(time.Until(time.Now().Add(21*features.WorkloadEntryCleanupGracePeriod))))
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  4. pkg/test/framework/components/ambient/waypoint.go

    			return fmt.Errorf("cannot fetch pod: %v", err)
    		} else if len(pods) != 0 {
    			return fmt.Errorf("waypoint pod is not deleted")
    		}
    		return nil
    	}, retry.Timeout(time.Minute), retry.BackoffDelay(time.Millisecond*100))
    	if waypointError != nil {
    		t.Fatal(waypointError)
    	}
    }
    
    func RemoveWaypointFromService(t framework.TestContext, ns namespace.Instance, service, waypoint string) {
    	if service != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. pkg/istio-agent/agent_test.go

    	checkCertsWritten := func(t *testing.T, dir string) {
    		retry.UntilSuccessOrFail(t, func() error {
    			// Ensure we output the certs
    			if names := filenames(t, dir); !reflect.DeepEqual(names, []string{"cert-chain.pem", "key.pem", "root-cert.pem"}) {
    				return fmt.Errorf("expected certs to be output, but got %v", names)
    			}
    			return nil
    		}, retry.Delay(time.Millisecond*10), retry.Timeout(time.Second*5))
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. releasenotes/notes/gw-hostname-resolution.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - https://github.com/istio/istio/issues/44155
    releaseNotes:
      - |
        **Fixed** an issue where istiod does not retry resolving east-west gateway hostnames on failure.
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 07 16:17:56 UTC 2023
    - 370 bytes
    - Viewed (0)
  7. samples/ambient-argo/meta-application.yaml

        repoURL: '{repo-placeholder}'
        targetRevision: HEAD
        directory:
          include: application.yaml
      project: default
      syncPolicy:
        automated:
          prune: true
          selfHeal: true
        retry:
          limit: 2
          backoff:
            duration: 5s
            maxDuration: 3m0s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 630 bytes
    - Viewed (0)
  8. tests/integration/pilot/revisions/uninstall_test.go

    			reItemList = append(reItemList, reList...)
    			reStrlist = append(reStrlist, reStr...)
    		}
    		return inspectRemainingResources(reItemList, reStrlist, purge)
    	}, retry.Delay(checkResourceDelay), retry.Timeout(checkResourceTimeout))
    }
    
    // getRemainingResourcesCluster get specific resources from the cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/ztunnelserver_test.go

    	assert.Equal(t, len(fds), 0)
    
    	sent := m.Payload.(*zdsapi.WorkloadRequest_SnapshotSent).SnapshotSent
    	if sent == nil {
    		panic("expected snapshot sent")
    	}
    	sendAck(ztunClient)
    	ztunClient.Close()
    	// this will retry for a bit, so shouldn't flake
    	mt.Assert(ztunnelConnected.Name(), nil, monitortest.Exactly(0))
    }
    
    func TestZtunnelRemovePod(t *testing.T) {
    	ztunnelKeepAliveCheckInterval = time.Second / 10
    	mt := monitortest.New(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. security/pkg/credentialfetcher/plugin/gce_test.go

    			retryTimeout := time.Duration(5+tc.expectedCall) * rotationInterval
    			retry.UntilSuccessOrFail(t, func() error {
    				callNumber := ms.NumGetTokenCall()
    				if callNumber < tc.expectedCall {
    					return fmt.Errorf("%s, got %d token fetch calls, expected %d",
    						id, callNumber, tc.expectedCall)
    				}
    				return nil
    			}, retry.Delay(time.Second), retry.Timeout(retryTimeout))
    
    			p.Stop()
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 03 18:09:59 UTC 2021
    - 10.1K bytes
    - Viewed (0)
Back to top