2f503c228e
This change makes it possible to deploy ACNG within a physical host NOT automatically tied to an MNAIO installation. This also adds an infra preseed file which can be used to provision physical hosts. By default the domain name is now passed into the server boot params which is useful when setting up an environment in support of RFC-1034/5. Ubuntu 16.04 has an issue with the options "quiet splash" being passed in which cause it to have no usable console. See [Related-Issue] for more. Related-Issue: #1656605 Change-Id: I731dfb70e4b5d676d8c22082da77c0d22d5afb58 Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
---
|
|
# Copyright 2017, Rackspace US, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in witing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
- include: setup-host.yml
|
|
when:
|
|
- setup_host | default(true) | bool
|
|
|
|
- include: deploy-acng.yml
|
|
when:
|
|
- setup_pxeboot | default(true) | bool
|
|
|
|
- include: deploy-pxe.yml
|
|
when:
|
|
- setup_pxeboot | default(true) | bool
|
|
|
|
- include: deploy-dhcp.yml
|
|
when:
|
|
- setup_dhcpd | default(true) | bool
|
|
|
|
- include: deploy-vms.yml
|
|
when:
|
|
- deploy_vms | default(true) | bool
|
|
|
|
- include: deploy-osa.yml
|
|
when:
|
|
- deploy_osa | default(true) | bool
|
|
|
|
- include: openstack-service-setup.yml
|
|
when:
|
|
- configure_openstack | default(true) | bool
|