diff --git a/deploy/charts/cert-manager/crds/clusterissuers.yaml b/deploy/charts/cert-manager/crds/clusterissuers.yaml index 48a4041ee..e0a137067 100644 --- a/deploy/charts/cert-manager/crds/clusterissuers.yaml +++ b/deploy/charts/cert-manager/crds/clusterissuers.yaml @@ -80,7 +80,7 @@ spec: description: Email is the email for this account type: string externalAccountBinding: - description: ExternalAcccountBinding is a reference to a CA external + description: ExternalAccountBinding is a reference to a CA external account of the ACME server. type: object required: diff --git a/deploy/charts/cert-manager/crds/issuers.yaml b/deploy/charts/cert-manager/crds/issuers.yaml index 7f9207dc5..2e9fef0ee 100644 --- a/deploy/charts/cert-manager/crds/issuers.yaml +++ b/deploy/charts/cert-manager/crds/issuers.yaml @@ -80,7 +80,7 @@ spec: description: Email is the email for this account type: string externalAccountBinding: - description: ExternalAcccountBinding is a reference to a CA external + description: ExternalAccountBinding is a reference to a CA external account of the ACME server. type: object required: diff --git a/deploy/manifests/00-crds.yaml b/deploy/manifests/00-crds.yaml index 5bd14dafe..daad8cf5c 100644 --- a/deploy/manifests/00-crds.yaml +++ b/deploy/manifests/00-crds.yaml @@ -2230,7 +2230,7 @@ spec: description: Email is the email for this account type: string externalAccountBinding: - description: ExternalAcccountBinding is a reference to a CA external + description: ExternalAccountBinding is a reference to a CA external account of the ACME server. type: object required: @@ -3984,7 +3984,7 @@ spec: description: Email is the email for this account type: string externalAccountBinding: - description: ExternalAcccountBinding is a reference to a CA external + description: ExternalAccountBinding is a reference to a CA external account of the ACME server. type: object required: diff --git a/pkg/apis/acme/v1alpha2/types_issuer.go b/pkg/apis/acme/v1alpha2/types_issuer.go index 752a35b48..c8ac16788 100644 --- a/pkg/apis/acme/v1alpha2/types_issuer.go +++ b/pkg/apis/acme/v1alpha2/types_issuer.go @@ -36,7 +36,7 @@ type ACMEIssuer struct { // +optional SkipTLSVerify bool `json:"skipTLSVerify,omitempty"` - // ExternalAcccountBinding is a reference to a CA external account of the ACME + // ExternalAccountBinding is a reference to a CA external account of the ACME // server. // +optional ExternalAccountBinding *ACMEExternalAccountBinding `json:"externalAccountBinding,omitempty"` @@ -51,7 +51,7 @@ type ACMEIssuer struct { Solvers []ACMEChallengeSolver `json:"solvers,omitempty"` } -// ACMEExternalAcccountBinding is a reference to a CA external account of the ACME +// ACMEExternalAccountBinding is a reference to a CA external account of the ACME // server. type ACMEExternalAccountBinding struct { // keyID is the ID of the CA key that the External Account is bound to. diff --git a/pkg/apis/acme/v1alpha3/types_issuer.go b/pkg/apis/acme/v1alpha3/types_issuer.go index 3165c219f..44a808ffc 100644 --- a/pkg/apis/acme/v1alpha3/types_issuer.go +++ b/pkg/apis/acme/v1alpha3/types_issuer.go @@ -36,7 +36,7 @@ type ACMEIssuer struct { // +optional SkipTLSVerify bool `json:"skipTLSVerify,omitempty"` - // ExternalAcccountBinding is a reference to a CA external account of the ACME + // ExternalAccountBinding is a reference to a CA external account of the ACME // server. // +optional ExternalAccountBinding *ACMEExternalAccountBinding `json:"externalAccountBinding,omitempty"` @@ -51,7 +51,7 @@ type ACMEIssuer struct { Solvers []ACMEChallengeSolver `json:"solvers,omitempty"` } -// ACMEExternalAcccountBinding is a reference to a CA external account of the ACME +// ACMEExternalAccountBinding is a reference to a CA external account of the ACME // server. type ACMEExternalAccountBinding struct { // keyID is the ID of the CA key that the External Account is bound to. diff --git a/pkg/internal/apis/acme/types_issuer.go b/pkg/internal/apis/acme/types_issuer.go index ad13b6de7..51e6f3692 100644 --- a/pkg/internal/apis/acme/types_issuer.go +++ b/pkg/internal/apis/acme/types_issuer.go @@ -34,7 +34,7 @@ type ACMEIssuer struct { // If true, skip verifying the ACME server TLS certificate SkipTLSVerify bool - // ExternalAcccountBinding is a reference to a CA external account of the ACME + // ExternalAccountBinding is a reference to a CA external account of the ACME // server. ExternalAccountBinding *ACMEExternalAccountBinding @@ -47,7 +47,7 @@ type ACMEIssuer struct { Solvers []ACMEChallengeSolver } -// ACMEExternalAcccountBinding is a reference to a CA external account of the ACME +// ACMEExternalAccountBinding is a reference to a CA external account of the ACME // server. type ACMEExternalAccountBinding struct { // keyID is the ID of the CA key that the External Account is bound to.