Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for InstallChart (0.3 sec)

  1. tests/integration/helm/util.go

    	}
    
    	// Install base chart
    	err := h.InstallChart(BaseReleaseName, baseChartPath, nsConfig.Get(BaseReleaseName), overrideValuesFile, Timeout, versionArgs)
    	if err != nil {
    		t.Fatalf("failed to install istio %s chart: %v", BaseChart, err)
    	}
    
    	// Install discovery chart
    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. pkg/test/helm/helm.go

    		name, chartPath, namespace, h.kubeConfig, timeout, strings.Join(values, " "))
    	_, err := execCommand(command)
    	return err
    }
    
    // InstallChart installs the specified chart with its given name to the given namespace
    func (h *Helm) InstallChart(name, chartPath, namespace, overridesFile string, timeout time.Duration, args ...string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 23 19:25:43 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. tests/integration/pilot/ingress_test.go

        labels:
          istio: custom-gateway-helm
    `, rev)), 0o644)
    				cs := t.Clusters().Default().(*kubecluster.Cluster)
    				h := helm.New(cs.Filename())
    				// Install ingress gateway chart
    				if err := h.InstallChart("ingress", filepath.Join(env.IstioSrc, "manifests/charts/gateways/istio-ingress"), gatewayNs.Name(),
    					d, helmtest.Timeout); err != nil {
    					t.Fatal(err)
    				}
    				retry.UntilSuccessOrFail(t, func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top