From 25445258d0c59780561665732cd8dd07738fa45e Mon Sep 17 00:00:00 2001
From: attardi <giuseppe.attardi@garr.it>
Date: Mon, 22 Jan 2018 00:58:39 +0100
Subject: [PATCH] 2 MDS.

---
 bundle.yaml  |  5 +++--
 example.yaml | 12 ++++++++++++
 2 files changed, 15 insertions(+), 2 deletions(-)
 create mode 100644 example.yaml

diff --git a/bundle.yaml b/bundle.yaml
index a0f09f8..bd1bb69 100644
--- a/bundle.yaml
+++ b/bundle.yaml
@@ -6,7 +6,7 @@
 ##
 
 series: xenial
-description: An eight-machine Kubernetes cluster, appropriate for production. Includes a three-machine etcd and ceph-mon cluster, a Kubernetes master, three Kubernetes worker nodes and a Kubernetes worker with GPUs. The Ceph (Luminous) cluster uses three nodes for Ceph Monitors and a Ceph OSD in LXD containers on each worker machine.
+description: An eight-machine Kubernetes cluster, appropriate for production. Includes a three-machine etcd and ceph-mon cluster, a Kubernetes master, three Kubernetes worker nodes and a Kubernetes worker with GPUs. The Ceph (Luminous) cluster uses three nodes for Ceph Monitors and a Ceph OSD in LXD containers on each worker machine. Two Ceph MDSs provide redundant shared Ceph File System.
 
 # ----------------------------------------------------------------------
 parameters:
@@ -172,11 +172,12 @@ services:
 
   ceph-mds:
     charm: cs:ceph-fs
-    num_units: 1
+    num_units: 2
     bindings:
       "": space-os-mgmt
     to:
       - 'lxd:0'
+      - 'lxd:1'
     annotations:
       gui-x: '1200'
       gui-y: '400'
diff --git a/example.yaml b/example.yaml
new file mode 100644
index 0000000..e20d54d
--- /dev/null
+++ b/example.yaml
@@ -0,0 +1,12 @@
+apiVersion: v1
+kind: Pod
+metadata:
+  name: web-site
+  labels:
+    app: web
+spec:
+    containers:
+    - name: nginx
+      image: nginx
+      ports:
+      - containerPort: 80
-- 
GitLab