Skip to content

Commit 0af00eb

Browse files
authored
Use marker for markdown link verification (#708)
* .travis.yml: enable markdown link verification * doc/proposals,.github: fix incorrect markdown
1 parent 30c6d71 commit 0af00eb

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

.github/ISSUE_TEMPLATE/feature-request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ about: Suggest a feature
77
## Feature Request
88

99
**Is your feature request related to a problem? Please describe.**
10-
A clear and concise description of what the problem is. Example: "I have an issue when [...]"
10+
A clear and concise description of what the problem is. Example: "I have an issue when (...)"
1111

1212
**Describe the solution you'd like**
1313
A clear and concise description of what you want to happen. Add any considered drawbacks.

.travis.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ language: go
22
go_import_path: github.com/operator-framework/operator-sdk
33
sudo: required
44

5-
services:
6-
- docker
7-
85
go:
96
- 1.10.3
107

@@ -21,10 +18,21 @@ jobs:
2118
env: CLUSTER=openshift
2219
script: make test/ci-go
2320
name: Go on OpenShift
21+
services:
22+
- docker
2423
- before_script: hack/ci/setup-openshift.sh
2524
env: CLUSTER=openshift
2625
script: make test/ci-ansible
2726
name: Ansible on OpenShift
27+
services:
28+
- docker
29+
- name: Markdown Link Checker
30+
language: bash
31+
before_install: true
32+
install: true
33+
after_success: echo 'Markdown links are correct'
34+
after_failure: echo 'Incorrect markdown link detected'
35+
script: ./hack/ci/marker
2836

2937
install:
3038
- curl -Lo dep https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64 && chmod +x dep && sudo mv dep /usr/local/bin/

doc/proposals/leader-for-life.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ multiple active operators of the same type.
1010
High availability is not a goal of leader election for operators.
1111

1212
Controller-runtime is adding leader election based on functionality present [in
13-
client-go](git@github.com:operator-framework/operator-sdk.git). However that
13+
client-go](https://github.com/kubernetes/client-go/blob/master/tools/leaderelection/leaderelection.go). However that
1414
implementation allows for the possibility of brief periods during which
1515
multiple leaders are active.
1616

doc/proposals/tls-utilities.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ We will break down the TLS workflow into the following steps:
6262

6363
Options:
6464

65-
* Key usage: [Server, Client or Both] If Server, needs svc obj (cluster.local can be different). If client, needs CN and possible org.
65+
* Key usage: (Server, Client or Both) If Server, needs svc obj (cluster.local can be different). If client, needs CN and possible org.
6666
* Option to specify signature configuration policy i.e Signing Profile for the certificate.
6767

6868
Outputs:

hack/ci/marker

1.17 MB
Binary file not shown.

0 commit comments

Comments
 (0)