1
0
Fork 0

Formatting and typos

This commit is contained in:
Mikhail Goncharov 2019-10-10 09:27:31 +02:00
parent ce9e33f696
commit 5667321337

View file

@ -8,12 +8,13 @@ TODO(@christiankuehnel): describe objective of merge guards
# Cluster overview
The cluster consists of these services:
* Jenkins build server: [http://jenkins.llvm-merge-guard.org]
* Jenkins build server: http://jenkins.llvm-merge-guard.org
* a set of Jenkins agents running the builds
* an nginx server with the build results/logs [http://jenkins.llvm-merge-guard.org]
* an nginx server with the build results/logs http://jenkins.llvm-merge-guard.org
# Jenkins-Phabricator integration
The Jenkins-Phabricator is based on the instructions provided with the [Phabricator-Jenkins Plugin](https://github.com/uber/phabricator-jenkins-plugin).
On the Phabricator side these things were configured:
@ -29,13 +30,14 @@ There is no backup of the credentials. If you need to change it, generate a new
# Playbooks
## deployment to a clean infrastructure
General remarks:
* GCP does not route any traffic to your services unless the service is "helthy". It might take a few minutes after startup before the services is classified as healthy. Until then you will only see some generic error message.
* GCP does not route any traffic to your services unless the service is "healthy". It might take a few minutes after startup before the services is classified as healthy. Until then you will only see some generic error message.
These are the steps to set up the build server on a clean infrastructure:
1. Configure the tools on your local machine:
```bash
./setup.sh
./local_setup.sh
```
1. Delete the old cluster, if it still exists:
```bash
@ -52,14 +54,14 @@ These are the steps to set up the build server on a clean infrastructure:
cd kubernetes/cluster
./disk_create.sh
```
1. ssh into the VM instance mounting the volume, find the mount point and then set
1. SSH into the VM instance mounting the volume, find the mount point and then set
```bash
# go to the mount point of the volume
cd /var/lib/kubelet/plugins/kubernetes.io/gce-pd/mounts/jenkins-home
# change the permissions
sudo chmod a+rwx
```
1. push the docker images to gcr.io:
1. Push the docker images to gcr.io:
```bash
cd containers/debian-testing-clang8
./build_deploy.sh
@ -67,12 +69,12 @@ These are the steps to set up the build server on a clean infrastructure:
cd ../jenkins-master
./build_deploy.sh
```
1. Deploy the stack: ``
1. Deploy the stack:
```bash
cd kubernetes
./deploy.sh
```
1. configure it
1. Configure it
## handling SSH keys
The Jenkins server SSHs into the agents to start the agent application. Thus the master needs SSH access to the agent. To set this up: