Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for renderChart (0.23 sec)

  1. operator/pkg/helm/helm.go

    			return "", fmt.Errorf("failed to read profile %v from %v: %v", profile, manifestsPath, err)
    		}
    	}
    
    	return globalValues, nil
    }
    
    // renderChart renders the given chart with the given values and returns the resulting YAML manifest string.
    func renderChart(namespace, values string, chrt *chart.Chart, filterFunc TemplateFilterFunc, version *version.Info) (string, error) {
    	options := chartutil.ReleaseOptions{
    		Name:      "istio",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. operator/pkg/helmreconciler/prune_test.go

    				},
    				iop:           iop,
    				countLock:     &sync.Mutex{},
    				prunedKindSet: map[schema.GroupKind]struct{}{},
    			}
    			if i == 0 {
    				h1 = h
    			}
    			manifestMap, err := h.RenderCharts()
    			if err != nil {
    				t.Fatalf("failed to render manifest: %v", err)
    			}
    			applyResourcesIntoCluster(t, h, manifestMap)
    		}
    		// delete one iop: iop-test-gw-1, get its pruned resources
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 12:13:37 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. operator/pkg/helmreconciler/reconciler.go

    	if err := util.CreateNamespace(h.kubeClient.Kube(), istioV1Alpha1.Namespace(h.iop.Spec), h.networkName(), h.opts.DryRun); err != nil {
    		return nil, err
    	}
    	manifestMap, err := h.RenderCharts()
    	if err != nil {
    		return nil, err
    	}
    
    	err = h.analyzeWebhooks(manifestMap[name.PilotComponentName])
    	if err != nil {
    		if h.opts.Force {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top