fw-ai/go-helm-client
forked from mittwald/go-helm-client
Captured source
source ↗fw-ai/go-helm-client
Description: Go client for accessing the Helm package manager
Language: Go
License: MIT
Stars: 0
Forks: 0
Open issues: 6
Created: 2023-06-13T23:26:48Z
Pushed: 2026-05-20T04:17:14Z
Default branch: master
Fork: yes
Parent repository: mittwald/go-helm-client
Archived: no
README:
Go Helm Client
Go client library for accessing Helm, enabling the user to programmatically change helm charts and releases.
This library is build upon `helm` and available under the MIT License.
!Compile & Test  
Installation
Install this library using go get:
$ go get github.com/mittwald/go-helm-client
Usage
Example usage of the client can be found in the package examples.
Private chart repository
When working with private repositories, you can utilize the Username and Password parameters of a chart entry to specify credentials.
An example of this can be found in the corresponding example.
Mock Client
This library includes a mock client [mock/interface_mock.go](mock/interface.go) which is generated by mockgen.
Example usage of the mocked client can be found in [mock/mock_test.go](mock/mock_test.go).
If you made changes to [interface.go](./interface.go), you should issue the make generate command to trigger code generation.
Documentation
For more specific documentation, please refer to the godoc of this library.