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
4a37ff32
Commit
4a37ff32
authored
Dec 13, 2018
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
396e3fe7
07e079e8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
12 deletions
+10
-12
doc/administration/operations/filesystem_benchmarking.md
doc/administration/operations/filesystem_benchmarking.md
+7
-9
doc/user/project/clusters/eks_and_gitlab/index.md
doc/user/project/clusters/eks_and_gitlab/index.md
+1
-1
doc/user/project/clusters/index.md
doc/user/project/clusters/index.md
+2
-2
No files found.
doc/administration/operations/filesystem_benchmarking.md
View file @
4a37ff32
...
...
@@ -44,12 +44,10 @@ user 0m0.025s
sys 0m0.091s
```
From experience with multiple customers, the following are ranges that indicate
whether your filesystem performance is satisfactory or less than ideal:
| Rating | Benchmark result |
|:----------|:------------------------|
| Best | Less than 10 seconds |
| OK | 10-18 seconds |
| Poor | 18-25 seconds |
| Very poor | Greater than 25 seconds |
From experience with multiple customers, this task should take under 10
seconds to indicate good filesystem performance.
NOTE:
**Note:**
This test is naive and only evaluates write performance. It's possible to
receive good results on this test but still have poor performance due to read
speed and various other factors.
\ No newline at end of file
doc/user/project/clusters/eks_and_gitlab/index.md
View file @
4a37ff32
...
...
@@ -49,7 +49,7 @@ A few details from the EKS cluster will be required to connect it to GitLab:
- Get the certificate with:
```sh
kubectl get secret <secret name> -o jsonpath="{['data']['ca\.crt']}" | base64 -
D
kubectl get secret <secret name> -o jsonpath="{['data']['ca\.crt']}" | base64 -
-decode
```
1.
**Create admin token**
: A
`cluster-admin`
token is required to install and
...
...
doc/user/project/clusters/index.md
View file @
4a37ff32
...
...
@@ -158,8 +158,8 @@ To determine the:
-
API URL, run
`kubectl cluster-info | grep 'Kubernetes master' | awk '/http/ {print $NF}'`
.
-
Token:
1.
List the secrets by running:
`kubectl get secrets`
. Note the name of the secret you need the token for.
1.
Get the token for the appropriate secret by running:
`kubectl get secret <SECRET_NAME> -o jsonpath="{['data']['token']}" | base64 -
D
`
.
-
CA certificate, run
`kubectl get secret <secret name> -o jsonpath="{['data']['ca\.crt']}" | base64 -
D
`
.
1.
Get the token for the appropriate secret by running:
`kubectl get secret <SECRET_NAME> -o jsonpath="{['data']['token']}" | base64 -
-decode
`
.
-
CA certificate, run
`kubectl get secret <secret name> -o jsonpath="{['data']['ca\.crt']}" | base64 -
-decode
`
.
## Security implications
...
...
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