oci: rename `OCIChartRepository.insecure` to `insecureHTTP`

Rename `OCIChartRepository.insecure` to `OCIChartRepository.insecureHTTP` in
`internal/helm/repository` to match the code docs and the related setter
method.

Signed-off-by: Sanskar Jaiswal <jaiswalsanskar078@gmail.com>
This commit is contained in:
Sanskar Jaiswal 2023-11-28 18:44:34 +05:30
parent dc79750fbb
commit 6a88d10bf1
No known key found for this signature in database
GPG Key ID: 5982D0279C227FFD
1 changed files with 4 additions and 4 deletions

View File

@ -76,8 +76,8 @@ type OCIChartRepository struct {
// verifiers is a list of verifiers to use when verifying a chart.
verifiers []oci.Verifier
// insecureHTTP indicates that the chart is hosted on an insecure registry.
insecure bool
// insecureHTTP indicates that the chart is hosted on an insecure HTTP registry.
insecureHTTP bool
}
// OCIChartRepositoryOption is a function that can be passed to NewOCIChartRepository
@ -94,7 +94,7 @@ func WithVerifiers(verifiers []oci.Verifier) OCIChartRepositoryOption {
func WithInsecureHTTP() OCIChartRepositoryOption {
return func(r *OCIChartRepository) error {
r.insecure = true
r.insecureHTTP = true
return nil
}
}
@ -369,7 +369,7 @@ func (r *OCIChartRepository) VerifyChart(ctx context.Context, chart *repo.ChartV
}
var nameOpts []name.Option
if r.insecure {
if r.insecureHTTP {
nameOpts = append(nameOpts, name.Insecure)
}