Skip to content

Commit 295824b

Browse files
authored
Merge pull request #637 from ratailor/fix-broken-links
Fix: update broken and outdated documentation URLs
2 parents f615010 + d009a52 commit 295824b

8 files changed

Lines changed: 13 additions & 13 deletions

File tree

modules/certmanager/test/functional/suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ var _ = BeforeSuite(func() {
8787
ctx, cancel = context.WithCancel(context.TODO())
8888

8989
// NOTE(mschuppert): CRD files in github.com/cert-manager/cert-manager/deploy/crds
90-
// are templated and can not be be used as is. Rendered templates are in the
90+
// are templated and can not be used as is. Rendered templates are in the
9191
// openshift operator at github.com/openshift/cert-manager-operator/config/crd/bases
9292
By("bootstrapping test environment")
9393
testEnv = &envtest.Environment{

modules/common/route/types.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,14 @@ type EmbeddedLabelsAnnotations struct {
7171
// Map of string keys and values that can be used to organize and categorize
7272
// (scope and select) objects. May match selectors of replication controllers
7373
// and services.
74-
// More info: http://kubernetes.io/docs/user-guide/labels
74+
// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
7575
// +optional
7676
Labels map[string]string `json:"labels,omitempty" protobuf:"bytes,11,rep,name=labels"`
7777

7878
// Annotations is an unstructured key value map stored with a resource that may be
7979
// set by external tools to store and retrieve arbitrary metadata. They are not
8080
// queryable and should be preserved when modifying objects.
81-
// More info: http://kubernetes.io/docs/user-guide/annotations
81+
// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
8282
// +optional
8383
Annotations map[string]string `json:"annotations,omitempty" protobuf:"bytes,12,rep,name=annotations"`
8484
}

modules/common/service/types.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,14 +168,14 @@ type EmbeddedLabelsAnnotations struct {
168168
// Map of string keys and values that can be used to organize and categorize
169169
// (scope and select) objects. May match selectors of replication controllers
170170
// and services.
171-
// More info: http://kubernetes.io/docs/user-guide/labels
171+
// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
172172
// +optional
173173
Labels map[string]string `json:"labels,omitempty" protobuf:"bytes,11,rep,name=labels"`
174174

175175
// Annotations is an unstructured key value map stored with a resource that may be
176176
// set by external tools to store and retrieve arbitrary metadata. They are not
177177
// queryable and should be preserved when modifying objects.
178-
// More info: http://kubernetes.io/docs/user-guide/annotations
178+
// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
179179
// +optional
180180
Annotations map[string]string `json:"annotations,omitempty" protobuf:"bytes,12,rep,name=annotations"`
181181
}

modules/common/util/template_util.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ var tmpl *template.Template
145145

146146
// template function which allows to execute a template from within
147147
// a template file.
148-
// name - name of the template as defined with with `{{define "some-template"}}your template{{end}}
148+
// name - name of the template as defined with `{{define "some-template"}}your template{{end}}
149149
// data - data to pass into to render the template for all can use `.`
150150
func execTempl(name string, data interface{}) (string, error) {
151151
buf := &bytes.Buffer{}

modules/openstack/openstack.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ func GetNovaOpenStackClient(
155155
return &os, nil
156156
}
157157

158-
// NewOpenStack creates a new new instance of the openstack identity struct from a config struct
158+
// NewOpenStack creates a new instance of the openstack identity struct from a config struct
159159
func NewOpenStack(
160160
log logr.Logger,
161161
cfg AuthOpts,

modules/test/apis/common.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ type Handler struct {
2626
// same request then the handler for the longer pattern will be executed.
2727
// Using the same pattern in two handlers will cause a panic.
2828
Pattern string
29-
// Func the the function that handles the request by writing a response
29+
// Func the function that handles the request by writing a response
3030
Func func(http.ResponseWriter, *http.Request)
3131
}
3232

modules/test/openshift_crds/cert-manager/v1/issuers.cert-manager.io-crd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ spec:
6262
description: Email is the email address to be associated with the ACME account. This field is optional, but it is strongly recommended to be set. It will be used to contact you in case of issues with your account or certificates, including expiry notification emails. This field may be updated after the account is initially registered.
6363
type: string
6464
enableDurationFeature:
65-
description: Enables requesting a Not After date on certificates that matches the duration of the certificate. This is not supported by all ACME servers like Let's Encrypt. If set to true when the ACME server does not support it it will create an error on the Order. Defaults to false.
65+
description: Enables requesting a Not After date on certificates that matches the duration of the certificate. This is not supported by all ACME servers like Let's Encrypt. If set to true when the ACME server does not support it will create an error on the Order. Defaults to false.
6666
type: boolean
6767
externalAccountBinding:
6868
description: ExternalAccountBinding is a reference to a CA external account of the ACME server. If set, upon registration cert-manager will attempt to associate the given external account credentials with the registered ACME account.

modules/test/openshift_crds/route/v1/route_crd.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ spec:
217217
description: value specifies a header value.
218218
Dynamic values can be added. The value will
219219
be interpreted as an HAProxy format string
220-
as defined in http://cbonte.github.io/haproxy-dconv/2.6/configuration.html#8.2.6
220+
as defined in https://cbonte.github.io/haproxy-dconv/2.6/configuration.html#8.2.6
221221
and may use HAProxy's %[] syntax and otherwise
222222
must be a valid HTTP header value as defined
223223
in https://datatracker.ietf.org/doc/html/rfc7230#section-3.2.
@@ -291,7 +291,7 @@ spec:
291291
- message: Either the header value provided is not in correct
292292
format or the sample fetcher/converter specified is not
293293
allowed. The dynamic header value will be interpreted
294-
as an HAProxy format string as defined in http://cbonte.github.io/haproxy-dconv/2.6/configuration.html#8.2.6
294+
as an HAProxy format string as defined in https://cbonte.github.io/haproxy-dconv/2.6/configuration.html#8.2.6
295295
and may use HAProxy's %[] syntax and otherwise must be
296296
a valid HTTP header value as defined in https://datatracker.ietf.org/doc/html/rfc7230#section-3.2.
297297
Sample fetchers allowed are req.hdr, ssl_c_der. Converters
@@ -333,7 +333,7 @@ spec:
333333
description: value specifies a header value.
334334
Dynamic values can be added. The value will
335335
be interpreted as an HAProxy format string
336-
as defined in http://cbonte.github.io/haproxy-dconv/2.6/configuration.html#8.2.6
336+
as defined in https://cbonte.github.io/haproxy-dconv/2.6/configuration.html#8.2.6
337337
and may use HAProxy's %[] syntax and otherwise
338338
must be a valid HTTP header value as defined
339339
in https://datatracker.ietf.org/doc/html/rfc7230#section-3.2.
@@ -407,7 +407,7 @@ spec:
407407
- message: Either the header value provided is not in correct
408408
format or the sample fetcher/converter specified is not
409409
allowed. The dynamic header value will be interpreted
410-
as an HAProxy format string as defined in http://cbonte.github.io/haproxy-dconv/2.6/configuration.html#8.2.6
410+
as an HAProxy format string as defined in https://cbonte.github.io/haproxy-dconv/2.6/configuration.html#8.2.6
411411
and may use HAProxy's %[] syntax and otherwise must be
412412
a valid HTTP header value as defined in https://datatracker.ietf.org/doc/html/rfc7230#section-3.2.
413413
Sample fetchers allowed are res.hdr, ssl_c_der. Converters

0 commit comments

Comments
 (0)