-
Notifications
You must be signed in to change notification settings - Fork 143
/
helm.go
84 lines (73 loc) · 1.82 KB
/
helm.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package stages
import (
"context"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
kargoapi "github.com/akuity/kargo/api/v1alpha1"
"github.com/akuity/kargo/internal/credentials"
"github.com/akuity/kargo/internal/helm"
"github.com/akuity/kargo/internal/logging"
)
func (r *reconciler) getLatestCharts(
ctx context.Context,
namespace string,
subs []kargoapi.ChartSubscription,
) ([]kargoapi.Chart, error) {
charts := make([]kargoapi.Chart, len(subs))
for i, sub := range subs {
logger := logging.LoggerFromContext(ctx).WithFields(log.Fields{
"registry": sub.RegistryURL,
"chart": sub.Name,
})
creds, ok, err :=
r.credentialsDB.Get(ctx, namespace, credentials.TypeHelm, sub.RegistryURL)
if err != nil {
return nil, errors.Wrapf(
err,
"error obtaining credentials for chart registry %q",
sub.RegistryURL,
)
}
var helmCreds *helm.Credentials
if ok {
helmCreds = &helm.Credentials{
Username: creds.Username,
Password: creds.Password,
}
logger.Debug("obtained credentials for chart repo")
} else {
logger.Debug("found no credentials for chart repo")
}
vers, err := r.getLatestChartVersionFn(
ctx,
sub.RegistryURL,
sub.Name,
sub.SemverConstraint,
helmCreds,
)
if err != nil {
return nil, errors.Wrapf(
err,
"error searching for latest version of chart %q in registry %q",
sub.Name,
sub.RegistryURL,
)
}
if vers == "" {
logger.Error("found no suitable chart version")
return nil, errors.Errorf(
"found no suitable version of chart %q in registry %q",
sub.Name,
sub.RegistryURL,
)
}
logger.WithField("version", vers).
Debug("found latest suitable chart version")
charts[i] = kargoapi.Chart{
RegistryURL: sub.RegistryURL,
Name: sub.Name,
Version: vers,
}
}
return charts, nil
}