Skip to content

Commit 8785ebc

Browse files
authored
Merge pull request #996 from ybelleguic/fix-typo-in-secretRef-helmRepo
fix typo in helmRepo secretRef spec CRD
2 parents b939216 + 2741d0a commit 8785ebc

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

api/v1beta1/helmrepository_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ type HelmRepositorySpec struct {
4343
// For HTTP/S basic auth the secret must contain username and
4444
// password fields.
4545
// For TLS the secret must contain a certFile and keyFile, and/or
46-
// caCert fields.
46+
// caFile fields.
4747
// +optional
4848
SecretRef *meta.LocalObjectReference `json:"secretRef,omitempty"`
4949

api/v1beta2/helmrepository_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ type HelmRepositorySpec struct {
5151
// For HTTP/S basic auth the secret must contain 'username' and 'password'
5252
// fields.
5353
// For TLS the secret must contain a 'certFile' and 'keyFile', and/or
54-
// 'caCert' fields.
54+
// 'caFile' fields.
5555
// +optional
5656
SecretRef *meta.LocalObjectReference `json:"secretRef,omitempty"`
5757

config/crd/bases/source.toolkit.fluxcd.io_helmrepositories.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ spec:
9292
description: The name of the secret containing authentication credentials
9393
for the Helm repository. For HTTP/S basic auth the secret must contain
9494
username and password fields. For TLS the secret must contain a
95-
certFile and keyFile, and/or caCert fields.
95+
certFile and keyFile, and/or caFile fields.
9696
properties:
9797
name:
9898
description: Name of the referent.
@@ -325,7 +325,7 @@ spec:
325325
description: SecretRef specifies the Secret containing authentication
326326
credentials for the HelmRepository. For HTTP/S basic auth the secret
327327
must contain 'username' and 'password' fields. For TLS the secret
328-
must contain a 'certFile' and 'keyFile', and/or 'caCert' fields.
328+
must contain a 'certFile' and 'keyFile', and/or 'caFile' fields.
329329
properties:
330330
name:
331331
description: Name of the referent.

docs/api/source.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -794,7 +794,7 @@ for the HelmRepository.
794794
For HTTP/S basic auth the secret must contain ‘username’ and ‘password’
795795
fields.
796796
For TLS the secret must contain a ‘certFile’ and ‘keyFile’, and/or
797-
&lsquo;caCert&rsquo; fields.</p>
797+
&lsquo;caFile&rsquo; fields.</p>
798798
</td>
799799
</tr>
800800
<tr>
@@ -2444,7 +2444,7 @@ for the HelmRepository.
24442444
For HTTP/S basic auth the secret must contain &lsquo;username&rsquo; and &lsquo;password&rsquo;
24452445
fields.
24462446
For TLS the secret must contain a &lsquo;certFile&rsquo; and &lsquo;keyFile&rsquo;, and/or
2447-
&lsquo;caCert&rsquo; fields.</p>
2447+
&lsquo;caFile&rsquo; fields.</p>
24482448
</td>
24492449
</tr>
24502450
<tr>

docs/spec/v1alpha1/helmrepositories.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ type HelmRepositorySpec struct {
1919
// repository.
2020
// For HTTP/S basic auth the secret must contain username and
2121
// password fields.
22-
// For TLS the secret must contain caFile, keyFile and caCert
22+
// For TLS the secret must contain caFile, keyFile and caFile
2323
// fields.
2424
// +optional
2525
SecretRef *corev1.LocalObjectReference `json:"secretRef,omitempty"`

docs/spec/v1beta1/helmrepositories.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ type HelmRepositorySpec struct {
2020
// For HTTP/S basic auth the secret must contain username and
2121
// password fields.
2222
// For TLS the secret must contain a certFile and keyFile, and/or
23-
// caCert fields.
23+
// caFile fields.
2424
// +optional
2525
SecretRef *corev1.LocalObjectReference `json:"secretRef,omitempty"`
2626

0 commit comments

Comments
 (0)