-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.sh
executable file
·37 lines (33 loc) · 1.47 KB
/
build.sh
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
---
# Copyright 2018, 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.
set -euvo
source bootstrap.sh
ansible deploy_hosts \
-i ${DEPLOY_INVENTORY:-"playbooks/inventory"} \
-m pip \
-a "name=netaddr"
ansible-playbook -vv \
-i ${DEPLOY_INVENTORY:-"playbooks/inventory"} \
-e setup_host=${SETUP_HOST:-"true"} \
-e setup_pxeboot=${SETUP_PXEBOOT:-"true"} \
-e setup_dhcpd=${SETUP_DHCPD:-"true"} \
-e default_ubuntu_mirror_hostname=${DEFAULT_MIRROR_HOSTNAME:-"mirror.rackspace.com"} \
-e default_ubuntu_mirror_directory=${DEFAULT_MIRROR_DIR:-"/ubuntu"} \
-e @configs/deployment.yml \
-e provision_environment=${PROVISION_ENVIRONMENT:-"false"} \
-e preflight=${PREFLIGHT:-"false"} \
-e update_firmware=${UPDATE_FIRMWARE:-"false"} \
--force-handlers \
playbooks/site.yml