Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
1e5a548d
Commit
1e5a548d
authored
Apr 30, 2021
by
Evan Read
Committed by
Albert Salim
Apr 30, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use latest docs linting images
parent
082a61c2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
.gitlab/ci/docs.gitlab-ci.yml
.gitlab/ci/docs.gitlab-ci.yml
+2
-2
doc/administration/gitaly/configure_gitaly.md
doc/administration/gitaly/configure_gitaly.md
+4
-4
scripts/lint-doc.sh
scripts/lint-doc.sh
+1
-1
No files found.
.gitlab/ci/docs.gitlab-ci.yml
View file @
1e5a548d
...
@@ -44,7 +44,7 @@ docs-lint markdown:
...
@@ -44,7 +44,7 @@ docs-lint markdown:
-
.default-retry
-
.default-retry
-
.docs:rules:docs-lint
-
.docs:rules:docs-lint
# When updating the image version here, update it in /scripts/lint-doc.sh too.
# When updating the image version here, update it in /scripts/lint-doc.sh too.
image
:
"
registry.gitlab.com/gitlab-org/gitlab-docs/lint-markdown:alpine-3.12-vale-2.8.0-markdownlint-0.26.0"
image
:
registry.gitlab.com/gitlab-org/gitlab-docs/lint-markdown:alpine-3.13-vale-2.10.2-markdownlint-0.26.0
stage
:
test
stage
:
test
needs
:
[]
needs
:
[]
script
:
script
:
...
@@ -54,7 +54,7 @@ docs-lint links:
...
@@ -54,7 +54,7 @@ docs-lint links:
extends
:
extends
:
-
.default-retry
-
.default-retry
-
.docs:rules:docs-lint
-
.docs:rules:docs-lint
image
:
"
registry.gitlab.com/gitlab-org/gitlab-docs/lint-html:alpine-3.12-ruby-2.7.2"
image
:
registry.gitlab.com/gitlab-org/gitlab-docs/lint-html:alpine-3.13-ruby-2.7.2
stage
:
test
stage
:
test
needs
:
[]
needs
:
[]
script
:
script
:
...
...
doc/administration/gitaly/configure_gitaly.md
View file @
1e5a548d
...
@@ -1037,7 +1037,7 @@ we felt we cannot assume this is true everywhere.
...
@@ -1037,7 +1037,7 @@ we felt we cannot assume this is true everywhere.
The cache needs a directory to store its files in. This directory
The cache needs a directory to store its files in. This directory
should be:
should be:
-
In a file
system with enough space. If the cache file
system runs out of space, all
-
In a file
system with enough space. If the cache file
system runs out of space, all
fetches start failing.
fetches start failing.
-
On a disk with enough IO bandwidth. If the cache disk runs out of IO bandwidth, all
-
On a disk with enough IO bandwidth. If the cache disk runs out of IO bandwidth, all
fetches, and probably the entire server, slows down.
fetches, and probably the entire server, slows down.
...
@@ -1052,8 +1052,8 @@ uses a unique random string as part of the cache filenames it creates. This mean
...
@@ -1052,8 +1052,8 @@ uses a unique random string as part of the cache filenames it creates. This mean
-
They do not reuse another process's files.
-
They do not reuse another process's files.
While the default directory puts the cache files in the same
While the default directory puts the cache files in the same
filesystem as your repository data, this is not requirement. You can
file
system as your repository data, this is not requirement. You can
put the cache files on a different filesystem if that works better for
put the cache files on a different file
system if that works better for
your infrastructure.
your infrastructure.
The amount of IO bandwidth required from the disk depends on:
The amount of IO bandwidth required from the disk depends on:
...
@@ -1157,7 +1157,7 @@ The following cache metrics are available.
...
@@ -1157,7 +1157,7 @@ The following cache metrics are available.
|Metric|Type|Labels|Description|
|Metric|Type|Labels|Description|
|:---|:---|:---|:---|
|:---|:---|:---|:---|
|
`gitaly_pack_objects_cache_enabled`
|gauge|
`dir`
,
`max_age`
|Set to
`1`
when the cache is enabled via the Gitaly config file|
|
`gitaly_pack_objects_cache_enabled`
|gauge|
`dir`
,
`max_age`
|Set to
`1`
when the cache is enabled via the Gitaly config
uration
file|
|
`gitaly_pack_objects_cache_lookups_total`
|counter|
`result`
|Hit/miss counter for cache lookups|
|
`gitaly_pack_objects_cache_lookups_total`
|counter|
`result`
|Hit/miss counter for cache lookups|
|
`gitaly_pack_objects_generated_bytes_total`
|counter||Number of bytes written into the cache|
|
`gitaly_pack_objects_generated_bytes_total`
|counter||Number of bytes written into the cache|
|
`gitaly_pack_objects_served_bytes_total`
|counter||Number of bytes read from the cache|
|
`gitaly_pack_objects_served_bytes_total`
|counter||Number of bytes read from the cache|
...
...
scripts/lint-doc.sh
View file @
1e5a548d
...
@@ -114,7 +114,7 @@ function run_locally_or_in_docker() {
...
@@ -114,7 +114,7 @@ function run_locally_or_in_docker() {
$cmd
$args
$cmd
$args
elif
hash
docker 2>/dev/null
elif
hash
docker 2>/dev/null
then
then
docker run
-t
-v
${
PWD
}
:/gitlab
-w
/gitlab
--rm
registry.gitlab.com/gitlab-org/gitlab-docs/lint-markdown:alpine-3.1
2-vale-2.6.1-markdownlint-0.24
.0
${
cmd
}
${
args
}
docker run
-t
-v
${
PWD
}
:/gitlab
-w
/gitlab
--rm
registry.gitlab.com/gitlab-org/gitlab-docs/lint-markdown:alpine-3.1
3-vale-2.10.2-markdownlint-0.26
.0
${
cmd
}
${
args
}
else
else
echo
echo
echo
" ✖ ERROR: '
${
cmd
}
' not found. Install '
${
cmd
}
' or Docker to proceed."
>
&2
echo
" ✖ ERROR: '
${
cmd
}
' not found. Install '
${
cmd
}
' or Docker to proceed."
>
&2
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment