Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for UpdateMeshConfigOrFail (0.16 sec)

  1. pkg/test/framework/components/istio/istio.go

    	MeshConfigOrFail(test.Failer) *meshconfig.MeshConfig
    	// UpdateMeshConfig used by the Istio installation.
    	UpdateMeshConfig(resource.Context, func(*meshconfig.MeshConfig) error, cleanup.Strategy) error
    	UpdateMeshConfigOrFail(resource.Context, test.Failer, func(*meshconfig.MeshConfig) error, cleanup.Strategy)
    	// PatchMeshConfig with the given patch yaml.
    	PatchMeshConfig(resource.Context, string) error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:47:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/configmap.go

    		if err := errG.Wait().ErrorOrNil(); err != nil {
    			scopes.Framework.Errorf("failed cleaning up cluster-local config: %v", err)
    		}
    	})
    	return errG.Wait().ErrorOrNil()
    }
    
    func (mc *meshConfig) UpdateMeshConfigOrFail(ctx resource.Context, t test.Failer, update func(*meshconfig.MeshConfig) error, cleanupStrategy cleanup.Strategy) {
    	t.Helper()
    	if err := mc.UpdateMeshConfig(ctx, update, cleanupStrategy); err != nil {
    		t.Fatal(err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top