~curtin-dev/curtin/trunk

« back to all changes in this revision

Viewing changes to examples/tests/mdadm_bcache_complex.yaml

  • Committer: Scott Moser
  • Date: 2017-12-20 17:33:03 UTC
  • Revision ID: smoser@ubuntu.com-20171220173303-29gha5qb8wpqrd40
README: Mention move of revision control to git.

curtin development has moved its revision control to git.
It is available at
  https://code.launchpad.net/curtin

Clone with
  git clone https://git.launchpad.net/curtin
or
  git clone git+ssh://git.launchpad.net/curtin

For more information see
  http://curtin.readthedocs.io/en/latest/topics/development.html

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
storage:
2
 
  version: 1
3
 
  config:
4
 
     - grub_device: true
5
 
       id: sda
6
 
       type: disk
7
 
       wipe: superblock
8
 
       ptable: gpt
9
 
       model: QEMU HARDDISK
10
 
       path: /dev/vdb
11
 
       name: main_disk
12
 
     - id: bios_boot_partition
13
 
       type: partition
14
 
       size: 1MB
15
 
       device: sda
16
 
       flag: bios_grub
17
 
     - id: sda1
18
 
       type: partition
19
 
       size: 2GB
20
 
       device: sda
21
 
     - id: sda2
22
 
       type: partition
23
 
       size: 1GB
24
 
       device: sda
25
 
     - id: sda3
26
 
       type: partition
27
 
       size: 1GB
28
 
       device: sda
29
 
     - id: sda4
30
 
       type: partition
31
 
       size: 1GB
32
 
       device: sda
33
 
     - id: sda5
34
 
       type: partition
35
 
       size: 1GB
36
 
       device: sda
37
 
     - id: sda6
38
 
       type: partition
39
 
       size: 1GB
40
 
       device: sda
41
 
     - id: sda7
42
 
       type: partition
43
 
       size: 1GB
44
 
       device: sda
45
 
     - id: sdb
46
 
       type: disk
47
 
       wipe: superblock
48
 
       model: QEMU HARDDISK
49
 
       path: /dev/vdc
50
 
       name: second_disk
51
 
     - id: sdc
52
 
       type: disk
53
 
       wipe: superblock
54
 
       ptable: gpt
55
 
       model: QEMU HARDDISK
56
 
       path: /dev/vdd
57
 
       name: third_disk
58
 
     - id: sdc1
59
 
       type: partition
60
 
       size: 3GB
61
 
       device: sdc
62
 
     - id: mddevice
63
 
       name: md0
64
 
       type: raid
65
 
       raidlevel: 1
66
 
       devices:
67
 
         - sda2
68
 
         - sda3
69
 
       spare_devices:
70
 
         - sda4
71
 
     - id: bcache1_raid
72
 
       type: bcache
73
 
       name: cached_array
74
 
       backing_device: mddevice
75
 
       cache_device: sda5
76
 
       cache_mode: writeback
77
 
     - id: bcache_normal
78
 
       type: bcache
79
 
       name: cached_array_2
80
 
       backing_device: sda6
81
 
       cache_device: sda5
82
 
       cache_mode: writethrough
83
 
     - id: bcachefoo
84
 
       type: bcache
85
 
       name: cached_array_3
86
 
       backing_device: sdc1
87
 
       cache_device: sdb
88
 
       cache_mode: writearound
89
 
     - id: sda1_extradisk
90
 
       type: format
91
 
       fstype: ext4
92
 
       volume: sda1
93
 
     - id: sda7_boot
94
 
       type: format
95
 
       fstype: ext4
96
 
       volume: sda7
97
 
     - id: bcache_raid_storage
98
 
       type: format
99
 
       fstype: ext4
100
 
       volume: bcache1_raid
101
 
     - id: bcache_normal_storage
102
 
       type: format
103
 
       fstype: ext4
104
 
       volume: bcache_normal
105
 
     - id: bcachefoo_fulldiskascache_storage
106
 
       type: format
107
 
       fstype: ext4
108
 
       volume: bcachefoo
109
 
     - id: bcache_root
110
 
       type: mount
111
 
       path: /
112
 
       device: bcachefoo_fulldiskascache_storage
113
 
     - id: bcache1_raid_mount
114
 
       type: mount
115
 
       path: /media/data
116
 
       device: bcache_raid_storage
117
 
     - id: bcache0_mount
118
 
       type: mount
119
 
       path: /media/bcache_normal
120
 
       device: bcache_normal_storage
121
 
     - id: sda1_non_root_mount
122
 
       type: mount
123
 
       path: /media/sda1
124
 
       device: sda1_extradisk
125
 
     - id: sda7_boot_mount
126
 
       type: mount
127
 
       path: /boot
128
 
       device: sda7_boot