Update docs

This commit is contained in:
antoniaklja 2019-01-11 16:15:59 +01:00
parent 9caf4577e5
commit 66da19b805
3 changed files with 4 additions and 4 deletions

View File

@ -23,7 +23,7 @@ make go-dependencies
## Build and run
Build and run **jenkins-operator**` locally:
Build and run **jenkins-operator** locally:
```bash
make build && make docker-build && make minikube-run EXTRA_ARGS='--minikube --local'

View File

@ -10,8 +10,8 @@ This document describes a high level overview how **jenkins-operator** works.
## Architecture and design
The **jenkins-operator** design incorporates the following concepts:
- watches any changes of manifests and maintain desired state according to deployed custom resource manifest
- implements a main reconciliation loop which consists of two smaller reconciliation loops - base and user
- watches any changes of manifests and maintain the desired state according to deployed custom resource manifest
- implements the main reconciliation loop which consists of two smaller reconciliation loops - base and user
![reconcile](../assets/reconcile.png)

View File

@ -30,7 +30,7 @@ kubectl apply -f deploy/role_binding.yaml
Update container image to **virtuslab/jenkins-operator:<version>** in `deploy/operator.yaml` and deploy **jenkins-operator**:
```bash
sed -i 's|REPLACE_IMAGE|image: virtuslab/jenkins-operator:latest|g' deploy/operator.yaml
sed -i 's|REPLACE_IMAGE|virtuslab/jenkins-operator:latest|g' deploy/operator.yaml
sed -i 's|REPLACE_ARGS||g' deploy/operator.yaml
kubectl apply -f deploy/operator.yaml
```