~smoser/ubuntu/zesty/curtin/pkg

« back to all changes in this revision

Viewing changes to examples/tests/bcache_basic.yaml

  • Committer: Scott Moser
  • Date: 2016-02-12 22:07:36 UTC
  • mfrom: (1.1.33)
  • Revision ID: smoser@ubuntu.com-20160212220736-9xdkp6t1t8501fh0
Tags: 0.1.0~bzr351-0ubuntu1
releasing package curtin version 0.1.0~bzr351-0ubuntu1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
storage:
 
2
  config:
 
3
  - id: id_rotary0
 
4
    type: disk
 
5
    name: rotary0
 
6
    path: /dev/vdb
 
7
    ptable: msdos
 
8
    wipe: superblock
 
9
    grub_device: true
 
10
  - id: id_ssd0
 
11
    type: disk
 
12
    name: ssd0
 
13
    path: /dev/vdc
 
14
    wipe: superblock
 
15
  - id: id_rotary0_part1
 
16
    type: partition
 
17
    name: rotary0-part1
 
18
    device: id_rotary0
 
19
    number: 1
 
20
    offset: 1M
 
21
    size: 999M
 
22
    wipe: superblock
 
23
  - id: id_rotary0_part2
 
24
    type: partition
 
25
    name: rotary0-part2
 
26
    device: id_rotary0
 
27
    number: 2
 
28
    size: 9G
 
29
    wipe: superblock
 
30
  - id: id_bcache0
 
31
    type: bcache
 
32
    name: bcache0
 
33
    backing_device: id_rotary0_part2
 
34
    cache_device: id_ssd0
 
35
    cache_mode: writeback
 
36
  - id: bootfs
 
37
    type: format
 
38
    label: boot-fs
 
39
    volume: id_rotary0_part1
 
40
    fstype: ext4
 
41
  - id: rootfs
 
42
    type: format
 
43
    label: root-fs
 
44
    volume: id_bcache0
 
45
    fstype: ext4
 
46
  - id: rootfs_mount
 
47
    type: mount
 
48
    path: /
 
49
    device: rootfs
 
50
  - id: bootfs_mount
 
51
    type: mount
 
52
    path: /boot
 
53
    device: bootfs
 
54
  version: 1