Age | Commit message (Collapse) | Author | Files | Lines |
|
was set in the wrong place
PATCHSET2: Fixes improper spacing in network_type for .yaml settings
Correct subnet is now detected . This was needed for Intel Pod1, but can
be used in other environments. Vagrantfile is now updated to add
this correct netmask, and variables are updated with correct netmask as
well. default_gw was being set before the base_config was copied, so we
were losing the value of the variable. Moved this statement to be after
base_config.
JIRA: BGS-31
Change-Id: I36c69abf5e687fe19a92a9659b2069e1f32275a8
Signed-off-by: Tim Rozet <trozet@redhat.com>
|
|
PATCHSET2: Fixes whitespace issue and adds default_gw substitution in
ksgen settings file
Creates a Vagrant VM provisioned with VirtualBox. The Vagrantfile
config is modified at runtime with dynamic support for baremetal network
setup. IP addresses and other network info are gathered at runtime and
passed to the .yaml file which is fed into Khaleesi to install
Foreman/QuickStack and provision hosts. For the script usage it is
recommended to include the following inside of the yaml file set:
- mac_address: "01:23:45:67:89:AB" <-Mac Address of admin interface
- bmc_ip: 10.4.17.2
- bmc_mac: "01:23:45:67:88:AB"
- bmc_user: root
- bmc_pass: root
JIRA: BGS-31
Change-Id: I1aa9352d2f5965befabf86119c0c9c5edb82f329
Signed-off-by: Tim Rozet <trozet@redhat.com>
|
|
build.sh accepts params defined by
https://etherpad.opnfv.org/p/BGS_CI
Build currently requires that
- CentOS-7.0-1406-x86_64-Minimal.iso
- VirtualBox-4.3-4.3.26_98988_fedora18-1.x86_64.rpm
- vagrant_1.7.2_x86_64.rpm
are placed in the build directory
Produces a CentOS 7 iso that will be able to install
foreman and provision OpenStack
JIRA: BGS-15
Change-Id: If9786d9723f7e77b208745e61704b15cba3ae9c0
Signed-off-by: Dan Radez <dradez@redhat.com>
|
|
This patch creates some tree structure based on Fatih Deqirmenci's suggestion:
genesis
├── common
│ ├── manifests
│ ├── tools
│ └── ci
├── foreman
│ ├── tools
│ │ └── foo.sh
│ └── ci
│ ├── deploy.sh
│ └── build.sh
├── fuel
│ ├── tools
│ │ └── foo.sh
│ └── ci
│ ├── deploy.sh
│ └── build.sh
└── opensteak
├── tools
│ └── foo.sh
└── ci
├── deploy.sh
└── build.sh
So far creating only the deploy and build scripts.
Signed-off-by: Joseph Gasparakis <joseph.gasparakis@intel.com>
|