forked from cloudfoundry/docs-bosh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
design.html.md.erb
37 lines (27 loc) · 1.5 KB
/
design.html.md.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
title: BOSH Design Principles
---
BOSH is an open framework for managing the full development and deployment life cycle of large-scale distributed software applications.
BOSH:
* Leverages IaaS APIs to create VMs from base images packaged with
operator-defined network, storage, and software configurations
* Monitors and manages VM and process health, detecting and restarting processes
or VMs when they become unhealthy
* Updates all VMs reliably and idempotently, whether the update is to the OS, a
package, or any other component
## <a id="predictable"></a>BOSH Deployments are Predictable ##
BOSH compiles the source code in an isolated, sterile environment.
When BOSH completes a deployment or update, the virtual machines deployed
contain only the exact software specified in the release.
BOSH versions all jobs, packages, and releases independently.
Because BOSH automatically versions releases and everything they contain in a
consistent way, the state of your deployment is known throughout its lifecycle.
## <a id="repeatable"></a>BOSH Deployments are Repeatable ##
Every time you repeat a BOSH deployment, the result is exactly the same deployed
system.
## <a id="self-healing"></a>BOSH Deployments are Self-Healing ##
BOSH monitors the health of processes running on the virtual machines it deploys
and compares the results with the ideal state of the system as described in the
deployment manifest.
If BOSH detects a failed job or non-responsive VM, BOSH can automatically
recreate the job on a new VM.