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: doc/proposals/helm-operator.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ Packages will be added to the operator-sdk. These packages are designed to be us
23
23
24
24
* /operator-sdk/pkg/helm/controller
25
25
* Will contain the Helm controller.
26
-
* Will contain an exposed reconciler. The default `Add`method will use this reconciler.
26
+
* Will contain an exposed reconciler. The default `Add`function will use this reconciler.
27
27
28
28
* /operator-sdk/pkg/helm/engine
29
29
* Will contain a Helm Engine implementation that adds owner references to generated Kubernetes resource assets, which is necessary for garbage collection of Helm chart resources.
@@ -32,14 +32,14 @@ Packages will be added to the operator-sdk. These packages are designed to be us
32
32
* Will contain types and utilities used by other Helm packages in the SDK.
33
33
34
34
* /operator-sdk/pkg/helm/release
35
-
* Will contain the Manager types and interfaces. A Manager is responsible for:
35
+
* Will contain the ReleaseManager types and interfaces. A ReleaseManager is responsible for:
36
36
* Implementing Helm's Tiller functions that are necessary to install, update, and uninstall releases.
37
37
* Reconciling an existing release's resources.
38
-
* A default Manager implementation is provided in this package but is not exported.
38
+
* A default ReleaseManager implementation is provided in this package but is not exported.
39
39
* Package functions:
40
-
*NewManager - method that returns a new Manager for a provided helm chart.
41
-
*NewManagersFromEnv - method that returns a map of GVK to Manager types based on environment variables.
42
-
*NewManagersFromFile - method that returns a map of GVK to Manager types based on a provided config file.
40
+
*NewReleaseManager - function that returns a new ReleaseManager for a provided helm chart.
41
+
*NewReleaseManagersFromEnv - function that returns a map of GVK to ReleaseManager types based on environment variables.
42
+
*NewReleaseManagersFromFile - function that returns a map of GVK to ReleaseManager types based on a provided config file.
0 commit comments