173 lines
4.0 KiB
Go
173 lines
4.0 KiB
Go
// SPDX-License-Identifier: Apache-2.0
|
|
// Copyright Authors of K9s
|
|
|
|
package dao
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"log/slog"
|
|
"os"
|
|
|
|
"github.com/derailed/k9s/internal/client"
|
|
"github.com/derailed/k9s/internal/config/data"
|
|
"github.com/derailed/k9s/internal/render/helm"
|
|
"github.com/derailed/k9s/internal/slogs"
|
|
"helm.sh/helm/v3/pkg/action"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/cli-runtime/pkg/genericclioptions"
|
|
)
|
|
|
|
var (
|
|
_ Accessor = (*HelmChart)(nil)
|
|
_ Nuker = (*HelmChart)(nil)
|
|
_ Describer = (*HelmChart)(nil)
|
|
_ Valuer = (*HelmChart)(nil)
|
|
)
|
|
|
|
// HelmChart represents a helm chart.
|
|
type HelmChart struct {
|
|
NonResource
|
|
}
|
|
|
|
// List returns a collection of resources.
|
|
func (h *HelmChart) List(_ context.Context, ns string) ([]runtime.Object, error) {
|
|
cfg, err := ensureHelmConfig(h.Client().Config().Flags(), ns)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
list := action.NewList(cfg)
|
|
list.All = true
|
|
list.SetStateMask()
|
|
rr, err := list.Run()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
oo := make([]runtime.Object, 0, len(rr))
|
|
for _, r := range rr {
|
|
oo = append(oo, helm.ReleaseRes{Release: r})
|
|
}
|
|
|
|
return oo, nil
|
|
}
|
|
|
|
// Get returns a resource.
|
|
func (h *HelmChart) Get(_ context.Context, path string) (runtime.Object, error) {
|
|
ns, n := client.Namespaced(path)
|
|
cfg, err := ensureHelmConfig(h.Client().Config().Flags(), ns)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
resp, err := action.NewGet(cfg).Run(n)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return helm.ReleaseRes{Release: resp}, nil
|
|
}
|
|
|
|
// GetValues returns values for a release
|
|
func (h *HelmChart) GetValues(path string, allValues bool) ([]byte, error) {
|
|
ns, n := client.Namespaced(path)
|
|
cfg, err := ensureHelmConfig(h.Client().Config().Flags(), ns)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
vals := action.NewGetValues(cfg)
|
|
vals.AllValues = allValues
|
|
resp, err := vals.Run(n)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return data.WriteYAML(resp)
|
|
}
|
|
|
|
// Describe returns the chart notes.
|
|
func (h *HelmChart) Describe(path string) (string, error) {
|
|
ns, n := client.Namespaced(path)
|
|
cfg, err := ensureHelmConfig(h.Client().Config().Flags(), ns)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
resp, err := action.NewGet(cfg).Run(n)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return resp.Info.Notes, nil
|
|
}
|
|
|
|
// ToYAML returns the chart manifest.
|
|
func (h *HelmChart) ToYAML(path string, _ bool) (string, error) {
|
|
ns, n := client.Namespaced(path)
|
|
cfg, err := ensureHelmConfig(h.Client().Config().Flags(), ns)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
resp, err := action.NewGet(cfg).Run(n)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return resp.Manifest, nil
|
|
}
|
|
|
|
// Delete uninstall a HelmChart.
|
|
func (h *HelmChart) Delete(_ context.Context, path string, _ *metav1.DeletionPropagation, _ Grace) error {
|
|
return h.Uninstall(path, false)
|
|
}
|
|
|
|
// Uninstall uninstalls a HelmChart.
|
|
func (h *HelmChart) Uninstall(path string, keepHist bool) error {
|
|
ns, n := client.Namespaced(path)
|
|
flags := h.Client().Config().Flags()
|
|
cfg, err := ensureHelmConfig(flags, ns)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
u := action.NewUninstall(cfg)
|
|
u.KeepHistory = keepHist
|
|
res, err := u.Run(n)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if res != nil && res.Info != "" {
|
|
return fmt.Errorf("%s", res.Info)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ensureHelmConfig return a new configuration.
|
|
func ensureHelmConfig(flags *genericclioptions.ConfigFlags, ns string) (*action.Configuration, error) {
|
|
settings := &genericclioptions.ConfigFlags{
|
|
Namespace: &ns,
|
|
Context: flags.Context,
|
|
BearerToken: flags.BearerToken,
|
|
APIServer: flags.APIServer,
|
|
CAFile: flags.CAFile,
|
|
KubeConfig: flags.KubeConfig,
|
|
Impersonate: flags.Impersonate,
|
|
Insecure: flags.Insecure,
|
|
TLSServerName: flags.TLSServerName,
|
|
ImpersonateGroup: flags.ImpersonateGroup,
|
|
WrapConfigFn: flags.WrapConfigFn,
|
|
}
|
|
cfg := new(action.Configuration)
|
|
err := cfg.Init(settings, ns, os.Getenv("HELM_DRIVER"), helmLogger)
|
|
|
|
return cfg, err
|
|
}
|
|
|
|
func helmLogger(fmat string, args ...any) {
|
|
slog.Debug("Log",
|
|
slogs.Log, fmt.Sprintf(fmat, args...),
|
|
slogs.Subsys, "helm",
|
|
)
|
|
}
|