Skip to content

Commit

Permalink
api kind error.
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Dec 19, 2017
1 parent c023937 commit 3718bde
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions contributors/design-proposals/storage/local-storage-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Today, ephemeral local storage is exposed to pods via the container’s writable
Distributed filesystems and databases are the primary use cases for persistent local storage due to the following factors:

* Performance: On cloud providers, local SSDs give better performance than remote disks.
* Cost: On baremetal, in addition to performance, local storage is typically cheaper and using it is a necessity to provision distributed filesystems.
* Cost: On bare metal, in addition to performance, local storage is typically cheaper and using it is a necessity to provision distributed filesystems.

Distributed systems often use replication to provide fault tolerance, and can therefore tolerate node failures. However, data gravity is preferred for reducing replication traffic and cold startup latencies.

Expand Down Expand Up @@ -87,7 +87,7 @@ The term `Partitions` are used here to describe the main use cases for local sto
```yaml
apiVersion: v1
kind: pod
kind: Pod
metadata:
name: foo
spec:
Expand Down Expand Up @@ -122,7 +122,7 @@ The term `Partitions` are used here to describe the main use cases for local sto

```yaml
apiVersion: v1
kind: pod
kind: Pod
metadata:
name: foo
namespace: myns
Expand Down Expand Up @@ -158,7 +158,7 @@ The term `Partitions` are used here to describe the main use cases for local sto

```yaml
apiVersion: v1
kind: pod
kind: Pod
metadata:
name: foo
spec:
Expand All @@ -182,7 +182,7 @@ The term `Partitions` are used here to describe the main use cases for local sto

```yaml
apiVersion: v1
kind: pod
kind: Pod
metadata:
name: foo
spec:
Expand Down Expand Up @@ -374,7 +374,7 @@ The term `Partitions` are used here to describe the main use cases for local sto
3. Whenever a pod experiences I/O issues with it's EmptyDir volume, Phippy reconfigures those pods to use an inline Persistent Volume, whose lifetime is tied to the pod.
```yaml
apiVersion: v1
kind: pod
kind: Pod
metadata:
name: foo
spec:
Expand Down Expand Up @@ -402,7 +402,7 @@ The term `Partitions` are used here to describe the main use cases for local sto

```yaml
apiVersion: v1
kind: pod
kind: Pod
metadata:
name: foo
spec:
Expand Down Expand Up @@ -444,7 +444,7 @@ The term `Partitions` are used here to describe the main use cases for local sto

```yaml
apiVersion: v1
kind: pod
kind: Pod
metadata:
name: foo
spec:
Expand Down

0 comments on commit 3718bde

Please sign in to comment.