diff --git a/api/v1beta2/helmrepository_types.go b/api/v1beta2/helmrepository_types.go index 4e53fdfd7..6792e32b1 100644 --- a/api/v1beta2/helmrepository_types.go +++ b/api/v1beta2/helmrepository_types.go @@ -98,6 +98,12 @@ type HelmRepositorySpec struct { // +optional Insecure bool `json:"insecure,omitempty"` + // InsecureSkipVerify allows connecting to a HTTPS container registry without + // verifying the server's certificate chain and host name. + // This field is only taken into account if the .spec.type field is set to 'oci'. + // +optional + InsecureSkipVerify bool `json:"insecureSkipVerify,omitempty"` + // Timeout is used for the index fetch operation for an HTTPS helm repository, // and for remote OCI Repository operations like pulling for an OCI helm // chart by the associated HelmChart. diff --git a/config/crd/bases/source.toolkit.fluxcd.io_helmrepositories.yaml b/config/crd/bases/source.toolkit.fluxcd.io_helmrepositories.yaml index 7eb709b94..9f051951c 100644 --- a/config/crd/bases/source.toolkit.fluxcd.io_helmrepositories.yaml +++ b/config/crd/bases/source.toolkit.fluxcd.io_helmrepositories.yaml @@ -318,6 +318,11 @@ spec: registry. This field is only taken into account if the .spec.type field is set to 'oci'. type: boolean + insecureSkipVerify: + description: InsecureSkipVerify allows connecting to a HTTPS container registry + without verifying the server's certificate chain and host name. + This field is only taken into account if the .spec.type field is set to 'oci'. + type: boolean interval: description: Interval at which the HelmRepository URL is checked for updates. This interval is approximate and may be subject to jitter diff --git a/docs/api/v1beta2/source.md b/docs/api/v1beta2/source.md index 04c3e328f..35c8f420b 100644 --- a/docs/api/v1beta2/source.md +++ b/docs/api/v1beta2/source.md @@ -887,6 +887,20 @@ This field is only taken into account if the .spec.type field is set to ‘o
insecureSkipVerify
InsecureSkipVerify allows connecting to a HTTPS container registry without +verifying the server’s certificate chain and host name. +This field is only taken into account if the .spec.type field is set to ‘oci’.
+timeout
insecureSkipVerify
InsecureSkipVerify allows connecting to a HTTPS container registry without +verifying the server’s certificate chain and host name. +This field is only taken into account if the .spec.type field is set to ‘oci’.
+timeout