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:
parent
dc79750fbb
commit
6a88d10bf1
|
@ -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)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue