Source: factory.deploy/extend.build/ObjBuildHelm.py
Helm chart operations for the build pipeline.
Renders values.yaml from config.yaml and wraps
helm CLI commands (install, upgrade, uninstall).
...
| Method | Signature | Description |
|---|---|---|
| helm_install | helm_install(package: str, namespace: str = '', values_file: str = '') -> int |
|
| helm_uninstall | helm_uninstall(package: str, namespace: str = '') -> int |
|
| helm_status | helm_status(package: str, namespace: str = '') -> int |
|
| helm_render_values | helm_render_values(package: str) -> Dict[str, Any] |
Render values.yaml from config.yaml. |