-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappliances.yml.example
99 lines (97 loc) · 3.02 KB
/
appliances.yml.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
##############################################
# Example Appliances
#
# There are three main examples below.
# - test: Uses a local kickstart file
# - live: Uses a network based kickstart file
# - jeos: Defines packages and partitions in
# the appliance definitions
##############################################
---
# This appliance uses a local kickstart file
# and defines the infomration necessary to push
# the content up to EC2.
# You could override this and push this to
# EC2 using 'adk ec2upload test'
name: test
kickstart: "test.ks"
memory: "512"
cpus: "1"
version: "1"
checksum: True
s3bucket: mahBucket
ec2kernel: testkernel
ec2ramdisk: testrd
---
# This appliance pulls down the fedora live cd kickstart file. You
# could build a livecd of this by executing
# 'adk livecd live'
name: live
kickstart: "http://git.fedorahosted.org/git/spin-kickstarts.git?p=spin-kickstarts.git;a=blob_plain;f=fedora-live-base.ks;hb=986c7b7555d42b12474d15fa2c3b5a3f3d88f6a9"
---
# This appliance defines basic kickstart information which will be used
# by the kickstart template, but does not define the
# ec2 upload credentials from above. An appliance could be built with this
# by executing 'adk build jeos'
name: jeos
memory: "512"
cpus: "1"
version: "1"
release: "0"
checksum: False
kickstart_meta:
rootpw: jeos
packages:
- bash
- kernel
- grub
- e2fsprogs
- passwd
- policycoreutils
- chkconfig
- rootfiles
- yum
- vim-minimal
- acpid
- lokkit
- dhclient
- iputils
- generic-logos
- openssh-server
excludes:
- kudzu
- prelink
- setserial
- ed
- authconfig
- rhpl
- wireless-tools
- kbd
- usermode
- mkinitrd
- kpartx
- dmraid
- mdadm
- lvm2
- tar
- policycoreutils
- checkpolicy
- selinux-policy*
- libselinux-python
- libselinux
- fedora-logos
- fedora-release-notes
repos:
- name: "f11"
mirrorlist: "http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-11&arch=$basearch"
- name: "f11-source"
mirrorlist: "http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-source-11&arch=$basearch"
- name: "f11-updates"
mirrorlist: "http://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f11&arch=$basearch"
- name: "f11-updates-source"
mirrorlist: "http://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-source-f11&arch=$basearch"
partitions:
- root: "/"
size: 1500
disk: sda
type: ext3