aboutsummaryrefslogtreecommitdiffstats
path: root/build/f_isoroot/f_repobuild/opnfv_config.yaml
blob: bf3913cc498933a04756f67c7ee667f78c187352 (plain)
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
##############################################################################
# Copyright (c) 2016 Enea AB and others.
# Alexandru.Avadanii@enea.com
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

# REPO definitions

# Based on old fuel-mirror data [1], adapted for OPNFV and packetary.
# NOTE: 'uri' field will be added by opnfv_mirror_ubuntu.py from ENV.
# [1] https://github.com/openstack/fuel-mirror/blob/stable/mitaka/
#     contrib/fuel_mirror/data/ubuntu.yaml

# Main is a required parameter which defines what repository will be used
# for images creation and that mirror should contain all packages for minimal
# system creation.
groups:
  ubuntu:
    - name: "ubuntu"
      main: true
      suite: "xenial"
      section:
        - "main"
        - "multiverse"
        - "restricted"
        - "universe"
      type: "deb"
      priority: null

    - name: "ubuntu-updates"
      suite: "xenial-updates"
      section:
        - "main"
        - "multiverse"
        - "restricted"
        - "universe"
      type: "deb"
      priority: null

    - name: "ubuntu-security"
      suite: "xenial-security"
      section:
        - "main"
        - "multiverse"
        - "restricted"
        - "universe"
      type: "deb"
      priority: null

  mos:
    - name: "mos"
      suite: "mos$mos_version"
      section:
        - "main"
        - "restricted"
      type: "deb"
      priority: 1000

    - name: "mos-updates"
      suite: "mos$mos_version-updates"
      section:
        - "main"
        - "restricted"
      type: "deb"
      priority: 1000

    - name: "mos-security"
      suite: "mos$mos_version-security"
      section:
        - "main"
        - "restricted"
      type: "deb"
      priority: 1000

    - name: "mos-holdback"
      suite: "mos$mos_version-holdback"
      section:
        - "main"
        - "restricted"
      type: "deb"
      priority: 1000

# PACKAGES

# This section lists packages that should be present in the local Ubuntu mirror,
# but are not direct dependencies of any other packages from  MOS or Ubuntu.
# e.g.: additional kernels, bootloaders etc.

packages:
  - name: "vgabios"
# Packages are required to build bootstrap images for a system.
# The mirror should contiain such packages in addition to local mirror.
  - name: "acpi-support"
  - name: "anacron"
  - name: "aptitude"
  - name: "atop"
  - name: "acct"
  - name: "bash-completion"
  - name: "bc"
  - name: "build-essential"
  - name: "ceph"
  - name: "cloud-init"
  - name: "conntrackd"
  - name: "cpu-checker"
  - name: "cpufrequtils"
  - name: "debconf-utils"
  - name: "devscripts"
  - name: "fping"
  - name: "galera-3"
  - name: "git"
  - name: "grub-pc"
  - name: "htop"
  - name: "hwloc"
  - name: "ifenslave"
  - name: "iperf"
  - name: "iptables-persistent"
  - name: "irqbalance"
  - name: "language-pack-en"
  - name: "libapache2-mod-fastcgi"
  - name: "libnss3-tools"
  - name: "linux-headers-generic-lts-xenial"
  - name: "linux-image-generic-lts-xenial"
  - name: "live-boot"
  - name: "livecd-rootfs"
  - name: "mc"
  - name: "memcached"
  - name: "mongodb-server"
  - name: "monit"
  - name: "msmtp-mta"
  - name: "multipath-tools"
  - name: "multipath-tools-boot"
  - name: "nginx"
  - name: "ntp"
  - name: "openssh-server"
  - name: "pcs"
  - name: "percona-toolkit"
  - name: "percona-xtrabackup"
  - name: "pm-utils"
  - name: "postfix"
  - name: "puppet"
  - name: "python-lesscpy"
  - name: "python-mysqldb"
  - name: "python-pip"
  - name: "radosgw"
  - name: "rbd-fuse"
  - name: "rsyslog-gnutls"
  - name: "rsyslog-relp"
  - name: "screen"
  - name: "squashfs-tools"
  - name: "swift-plugin-s3"
  - name: "sysfsutils"
  - name: "sysstat"
  - name: "telnet"
  - name: "tmux"
  - name: "traceroute"
  - name: "ubuntu-standard"
  - name: "vim"
  - name: "virt-what"
  - name: "xinetd"
  - name: "xmlstarlet"
  - name: "tftpd-hpa"
  - name: "syslinux"

# OPNFV BLACKLIST

# Packetary's dependency solving mechanism brings in more than one alternative
# For example, "Depends: upstart | systemd-sysv" brings both packages, which
# leads to debootstrap using "upstart" (1st option available in local repo).

opnfv_blacklist:
  - name: "upstart"