Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for installRevisionOrFail (0.3 sec)

  1. tests/integration/pilot/multi_version_revision_test.go

    						}, retry.Delay(time.Millisecond*150))
    					})
    			}
    		}
    	}
    }
    
    // installRevisionOrFail takes an Istio version and installs a revisioned control plane running that version
    // provided istio version must be present in tests/integration/pilot/testdata/upgrade for the installation to succeed
    func installRevisionOrFail(t framework.TestContext, version string, configs map[string]string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. tests/integration/pilot/revisioned_upgrade_test.go

    		for _, config := range configs {
    			_ = t.ConfigIstio().YAML("istio-system", config).Delete()
    		}
    	})
    
    	// install control plane on the specified version and create namespace pointed to that control plane
    	installRevisionOrFail(t, fromVersion, configs)
    	revision := strings.ReplaceAll(fromVersion, ".", "-")
    	revisionedNamespace := namespace.NewOrFail(t, t, namespace.Config{
    		Prefix:   revision,
    		Inject:   true,
    		Revision: revision,
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top