helm.go 408 B

1234567891011121314151617
  1. package tools
  2. type (
  3. helm struct{}
  4. )
  5. func Helm() *helm {
  6. return &helm{}
  7. }
  8. func (h *helm) Values() {}
  9. func (h *helm) Value(key string, value any) {}
  10. func (h *helm) ValuesFile() {}
  11. func (h *helm) LS() {}
  12. func (h *helm) Install() {}
  13. func (h *helm) Upgrade() {}
  14. func (h *helm) Uninstall() {}