Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use marker for markdown link verification #708

Merged
merged 4 commits into from
Nov 5, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ about: Suggest a feature
## Feature Request

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

**Describe the solution you'd like**
A clear and concise description of what you want to happen. Add any considered drawbacks.
14 changes: 11 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ language: go
go_import_path: github.com/operator-framework/operator-sdk
sudo: required

services:
- docker

go:
- 1.10.3

Expand All @@ -21,10 +18,21 @@ jobs:
env: CLUSTER=openshift
script: make test/ci-go
name: Go on OpenShift
services:
- docker
- before_script: hack/ci/setup-openshift.sh
env: CLUSTER=openshift
script: make test/ci-ansible
name: Ansible on OpenShift
services:
- docker
- name: Markdown Link Checker
language: bash
before_install: true
install: true
after_success: echo 'Markdown links are correct'
after_failure: echo 'Incorrect markdown link detected'
script: ./hack/ci/marker

install:
- 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/
Expand Down
2 changes: 1 addition & 1 deletion doc/proposals/leader-for-life.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ multiple active operators of the same type.
High availability is not a goal of leader election for operators.

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

Expand Down
2 changes: 1 addition & 1 deletion doc/proposals/tls-utilities.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ We will break down the TLS workflow into the following steps:

Options:

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

Outputs:
Expand Down
Binary file added hack/ci/marker
Binary file not shown.