Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for namespaceconfig (0.17 sec)

  1. tests/integration/helm/util.go

    		ctx.Fatalf("failed to write iop cr file: %v", err)
    	}
    
    	return overrideValuesFile
    }
    
    var DefaultNamespaceConfig = NewNamespaceConfig()
    
    func NewNamespaceConfig(config ...types.NamespacedName) NamespaceConfig {
    	result := make(nsConfig, len(config))
    	for _, c := range config {
    		result[c.Name] = c.Namespace
    	}
    	return result
    }
    
    type nsConfig map[string]string
    
    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/upgrade/util.go

    // override values file to the latest charts in $ISTIO_SRC/manifests
    func upgradeCharts(ctx framework.TestContext, h *helm.Helm, overrideValuesFile string, nsConfig helmtest.NamespaceConfig, isAmbient bool) {
    	execCmd := fmt.Sprintf(
    		"kubectl apply -n %v -f %v",
    		helmtest.IstioNamespace,
    		filepath.Join(helmtest.ManifestsChartPath, helmtest.BaseChart, helmtest.CRDsFolder))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top