mariash / learn-bosh-release

Release for BOSH tutorial
http://mariash.github.io/learn-bosh
6 stars 24 forks source link

A second deploy to bosh lite will fail #1

Open Kaixiang opened 9 years ago

Kaixiang commented 9 years ago

While going through the bosh '10 min tutorial' we found the 2nd deploy will fail because the 'network was occupied'

and it seems the manifest.yml is not for warden networks.

we change that to something like cf and it resolves the problem:

+    range: 10.244.0.0/30
+    reserved:
+    - 10.244.0.1
+    static:
+    - 10.244.0.2
+  - cloud_properties:
+      name: random
+    range: 10.244.0.4/30
+    reserved:
+    - 10.244.0.5
+    static:
+    - 10.244.0.6
+  - cloud_properties:
+      name: random
+    range: 10.244.0.8/30
+    reserved:
+    - 10.244.0.9
+    static:
+    - 10.244.0.10
+  - cloud_properties:
+      name: random
+    range: 10.244.0.12/30
+    reserved:
+    - 10.244.0.13
+    static:
+    - 10.244.0.14
+  - cloud_properties:
+      name: random
+    range: 10.244.0.16/30
+    reserved:
+    - 10.244.0.17
+    static:
+    - 10.244.0.18
+  - cloud_properties:
+      name: random
+    range: 10.244.0.20/30
+    reserved:
+    - 10.244.0.21
+    static:
+    - 10.244.0.22
+  - cloud_properties:
+      name: random
+    range: 10.244.0.24/30
+    reserved:
+    - 10.244.0.25
+    static:
+    - 10.244.0.26
+  - cloud_properties:
+      name: random
+    range: 10.244.0.28/30
+    reserved:
+    - 10.244.0.29
Kaixiang commented 9 years ago

For your information @mariash