Commit 9220c670 authored by GitLab Bot's avatar GitLab Bot

Automatic merge of gitlab-org/gitlab-ce master

parents bcc737bb d0abcc1a
...@@ -431,9 +431,9 @@ table.code { ...@@ -431,9 +431,9 @@ table.code {
&.diff-line-num { &.diff-line-num {
user-select: none; user-select: none;
margin: 0; margin: 0;
border: 0;
padding: 0 10px 0 5px; padding: 0 10px 0 5px;
border-right: 1px solid; border-right-width: 1px;
border-right-style: solid;
text-align: right; text-align: right;
width: 50px; width: 50px;
position: relative; position: relative;
......
...@@ -14,7 +14,7 @@ Deleting a user will delete all projects in that user namespace. ...@@ -14,7 +14,7 @@ Deleting a user will delete all projects in that user namespace.
[GitLab 9.1][ce-10273], and from the API in [GitLab 9.3][ce-11853]. [GitLab 9.1][ce-10273], and from the API in [GitLab 9.3][ce-11853].
When a user account is deleted, not all associated records are deleted with it. When a user account is deleted, not all associated records are deleted with it.
Here's a list of things that will not be deleted: Here's a list of things that will **not** be deleted:
- Issues that the user created - Issues that the user created
- Merge requests that the user created - Merge requests that the user created
......
...@@ -124,26 +124,26 @@ To add an existing Kubernetes cluster to your project: ...@@ -124,26 +124,26 @@ To add an existing Kubernetes cluster to your project:
1. Create a file called `gitlab-admin-service-account.yaml` with contents: 1. Create a file called `gitlab-admin-service-account.yaml` with contents:
```yaml ```yaml
apiVersion: v1 apiVersion: v1
kind: ServiceAccount kind: ServiceAccount
metadata: metadata:
name: gitlab-admin name: gitlab-admin
namespace: kube-system namespace: kube-system
--- ---
apiVersion: rbac.authorization.k8s.io/v1beta1 apiVersion: rbac.authorization.k8s.io/v1beta1
kind: ClusterRoleBinding kind: ClusterRoleBinding
metadata: metadata:
name: gitlab-admin name: gitlab-admin
roleRef: roleRef:
apiGroup: rbac.authorization.k8s.io apiGroup: rbac.authorization.k8s.io
kind: ClusterRole kind: ClusterRole
name: cluster-admin name: cluster-admin
subjects: subjects:
- kind: ServiceAccount - kind: ServiceAccount
name: gitlab-admin name: gitlab-admin
namespace: kube-system namespace: kube-system
``` ```
1. Apply the service account and cluster role binding to your cluster: 1. Apply the service account and cluster role binding to your cluster:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment