diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index fcea097ec3..b4278ca9c2 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -8,3 +8,6 @@ jobs: steps: - uses: actions/checkout@master - uses: gaurav-nelson/github-action-markdown-link-check@v1 + with: + use-quiet-mode: 'yes' + config-file: .github/workflows/markdown-link-check-config.json diff --git a/.github/workflows/markdown-link-check-config.json b/.github/workflows/markdown-link-check-config.json new file mode 100644 index 0000000000..90ab7441e8 --- /dev/null +++ b/.github/workflows/markdown-link-check-config.json @@ -0,0 +1,14 @@ +{ + "ignorePatterns": [ + { + "localhost": "localhost", + "osquery-downloads": "osquery.io/downloads", + "fleet.acme.org": "fleet.acme.org", + "fleet.corp.example.com": "fleet.corp.example.com" + } + ], + "retryOn429": true, + "retryCount": 2, + "fallbackRetryDelay": "2s", + "aliveStatusCodes": [200, 206] +} diff --git a/CHANGELOG.md b/CHANGELOG.md index 87c1de0eee..4e6387abe3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -331,7 +331,7 @@ spec: ### Upgrade Plan -* Managing osquery options via the UI has been removed in favor of the more flexible solution provided by the CLI. If you have customized your osquery options with Fleet, there is [a database migration](server/datastore/mysql/migrations/data/20171212182458_MigrateOsqueryOptions.go) which will port your existing data into the new format when you run `fleet prepare db`. To download your osquery options after migrating your database, run `fleetctl get options > options.yaml`. Further modifications to your options should occur in this file and it should be applied with `fleetctl apply -f ./options.yaml`. +* Managing osquery options via the UI has been removed in favor of the more flexible solution provided by the CLI. If you have customized your osquery options with Fleet, there is [a database migration](./server/datastore/mysql/migrations/data/20171212182458_MigrateOsqueryOptions.go) which will port your existing data into the new format when you run `fleet prepare db`. To download your osquery options after migrating your database, run `fleetctl get options > options.yaml`. Further modifications to your options should occur in this file and it should be applied with `fleetctl apply -f ./options.yaml`. ## Kolide Fleet 1.0.8 (May 3, 2018) diff --git a/docs/development/release.md b/docs/development/release.md index 51b0afff23..6948bb55f6 100644 --- a/docs/development/release.md +++ b/docs/development/release.md @@ -1,7 +1,7 @@ Releasing Fleet =============== -1. Update the [CHANGELOG](/CHANGELOG.md) with the changes that have been made since the last Fleet release. +1. Update the [CHANGELOG](../../CHANGELOG.md) with the changes that have been made since the last Fleet release. 2. Tag and push the new release in Git: diff --git a/docs/infrastructure/fleet-on-centos.md b/docs/infrastructure/fleet-on-centos.md index 76bddc147b..7845bc8587 100644 --- a/docs/infrastructure/fleet-on-centos.md +++ b/docs/infrastructure/fleet-on-centos.md @@ -201,4 +201,4 @@ sudo /usr/bin/osqueryd \ --logger_tls_period=10 ``` -If you go back to [https://localhost:8080/hosts/manage](https://localhost:8080/hosts/manage), you should have a host successfully enrolled in Fleet! For information on how to further use the Fleet application, see the [Application Documentation](../application/README.md). +If you go back to [https://localhost:8080/hosts/manage](https://localhost:8080/hosts/manage), you should have a host successfully enrolled in Fleet! diff --git a/docs/infrastructure/fleet-on-ubuntu.md b/docs/infrastructure/fleet-on-ubuntu.md index 515f6ce9c5..4f2807eee2 100644 --- a/docs/infrastructure/fleet-on-ubuntu.md +++ b/docs/infrastructure/fleet-on-ubuntu.md @@ -171,4 +171,4 @@ sudo /usr/bin/osqueryd \ --logger_tls_period=10 ``` -If you go back to [https://localhost:8080/hosts/manage](https://localhost:8080/hosts/manage), you should have a host successfully enrolled in Fleet! For information on how to further use the Fleet application, see the [Application Documentation](../application/README.md). +If you go back to [https://localhost:8080/hosts/manage](https://localhost:8080/hosts/manage), you should have a host successfully enrolled in Fleet! diff --git a/frontend/README.md b/frontend/README.md index cdf79f2558..985236cfcf 100644 --- a/frontend/README.md +++ b/frontend/README.md @@ -5,7 +5,7 @@ The Fleet front-end is a Single Page Application using React and Redux. ## Running the Fleet web app For details instruction on building and serving the Fleet web application -consult the [Development Documentation](./development/README.md) +consult the [Development Documentation](../development/README.md) ## Directory Structure