Skip to content

Commit

Permalink
change to fix header
Browse files Browse the repository at this point in the history
  • Loading branch information
herve committed Dec 13, 2019
1 parent 078f669 commit 8caaa51
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions fundamentals/high-availability.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,12 +186,12 @@ The file developed has to be stored in this directory : `~/data/votingapp/13_hig
Create 2 PersistentVolumes used after by redis and db.

{% code-tabs %}
{% code-tabs-item title="~/data/votingapp/13\_highavailability/persistentvolume\_1g\_1.yaml" %}
{% code-tabs-item title="~/data/votingapp/13\_highavailability/persistentvolume\_1g\_a.yaml" %}
```yaml
kind: PersistentVolume
apiVersion: v1
metadata:
name: persistentvolume-1g-1
name: persistentvolume-1g-a
namespace: voting-app
labels:
type: local
Expand All @@ -202,18 +202,18 @@ spec:
accessModes:
- ReadWriteOnce
hostPath:
path: "~/data/votingapp/13_highavailability/pv-1g-1/data"
path: "~/data/votingapp/13_highavailability/pv-1g-a/data"
```
{% endcode-tabs-item %}
{% endcode-tabs %}
{% code-tabs %}
{% code-tabs-item title="~/data/votingapp/13\_highavailability/persistentvolume\_1g\_2.yaml" %}
{% code-tabs-item title="~/data/votingapp/13\_highavailability/persistentvolume\_1g\_b.yaml" %}
```yaml
kind: PersistentVolume
apiVersion: v1
metadata:
name: persistentvolume-1g-2
name: persistentvolume-1g-b
namespace: voting-app
labels:
type: local
Expand All @@ -224,7 +224,7 @@ spec:
accessModes:
- ReadWriteOnce
hostPath:
path: "~/data/votingapp/13_highavailability/pv-1g-2/data"
path: "~/data/votingapp/13_highavailability/pv-1g-b/data"
```
{% endcode-tabs-item %}
{% endcode-tabs %}
Expand Down

0 comments on commit 8caaa51

Please sign in to comment.