You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/manifests/helm.go
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,9 @@ var _ Generator = &HelmGenerator{}
46
46
// Create a new HelmGenerator.
47
47
// Deprecation warning: the parameters name, client and discoveryClient are ignored (can be passed as empty resp. nil) and will be removed in a future release;
48
48
// the according values will be retrieved from the context passed to Generate().
49
+
// If fsys is nil, the local operating system filesystem will be used, and chartPath can be an absolute or relative path (in the latter case it will be considered
50
+
// relative to the current working directory). If fsys is non-nil, then chartPath should be a relative path; if an absolute path is supplied, it will be turned
Copy file name to clipboardExpand all lines: pkg/manifests/kustomize.go
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,9 @@ var _ Generator = &KustomizeGenerator{}
43
43
// Create a new KustomizeGenerator.
44
44
// Deprecation warning: the parameter client is ignored (can be passed as nil) and will be removed in a future release;
45
45
// the according value will be retrieved from the context passed to Generate().
46
+
// If fsys is nil, the local operating system filesystem will be used, and kustomizationPath can be an absolute or relative path (in the latter case it will be considered
47
+
// relative to the current working directory). If fsys is non-nil, then kustomizationPath should be a relative path; if an absolute path is supplied, it will be turned
48
+
// An empty kustomizationPath will be treated like ".".
0 commit comments