Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for adjustValuesForOpenShift (0.36 sec)

  1. tests/integration/helm/util.go

    var ManifestsChartPath = filepath.Join(env.IstioSrc, "manifests/charts")
    
    // adjustValuesForOpenShift adds the "openshift" or "openshift-ambient" profile to the
    // values if tests are running in OpenShift, and returns the modified values
    func adjustValuesForOpenShift(ctx framework.TestContext, values string) string {
    	if !ctx.Settings().OpenShift {
    		return values
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. tests/integration/helm/install_test.go

    		tag := s.Image.Tag
    		if !strings.Contains(overrideValuesStr, "tag: ") {
    			tag = "tag: " + tag
    		}
    		overrideValues := fmt.Sprintf(overrideValuesStr, s.Image.Hub, tag, s.Image.Variant)
    		overrideValues = adjustValuesForOpenShift(t, overrideValues)
    
    		overrideValuesFile := filepath.Join(workDir, "values.yaml")
    		if err := os.WriteFile(overrideValuesFile, []byte(overrideValues), os.ModePerm); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top