Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewGenericRenderer (0.12 sec)

  1. operator/pkg/helm/renderer.go

    }
    
    // NewFileTemplateRenderer creates a TemplateRenderer with the given parameters and returns a pointer to it.
    // helmChartDirPath must be an absolute file path to the root of the helm charts.
    func NewGenericRenderer(files fs.FS, dir, componentName, namespace string, version *version.Info) *Renderer {
    	return &Renderer{
    		namespace:     namespace,
    		componentName: componentName,
    		dir:           dir,
    		files:         files,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 13 01:59:17 UTC 2022
    - 5K bytes
    - Viewed (0)
  2. operator/pkg/helm/helm.go

    // HTTP etc.)
    func NewHelmRenderer(operatorDataDir, helmSubdir, componentName, namespace string, version *version.Info) TemplateRenderer {
    	dir := strings.Join([]string{ChartsSubdirName, helmSubdir}, "/")
    	return NewGenericRenderer(manifests.BuiltinOrDir(operatorDataDir), dir, componentName, namespace, version)
    }
    
    // ReadProfileYAML reads the YAML values associated with the given profile. It uses an appropriate reader for the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top