blob: eeaa97259ca58fce8639a2926f4dfbedcfcda8b6 [file] [log] [blame]
Zack Williams6dc2d452017-12-20 17:50:49 -07001---
Matteo Scandolo3896c472017-08-01 13:31:42 -07002# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
Zack Williams5223dd92017-02-28 23:38:02 -070016# prep-headnode-playbook.yml
17# Preps the head node of a CORD pod for thr est of the install
18
Zack Williams5223dd92017-02-28 23:38:02 -070019- name: Prep head node
20 hosts: head
21 roles:
22 - { role: head-prep, become: yes }
23
24- name: Common prep, install certificates
25 become: yes
26 hosts: head
27 roles:
28 - common-prep
29 - pki-install
30
31- name: Install docker and configure it
32 hosts: head
33 roles:
34 - docker-install
35
Zack Williams6dc2d452017-12-20 17:50:49 -070036- name: Configure network interfaces
Zack Williams5223dd92017-02-28 23:38:02 -070037 hosts: head
38 become: yes
39 roles:
Zack Williamsfe284a12017-07-01 11:00:04 -070040 - { role: interface-config, when: not use_maas }
Zack Williams5223dd92017-02-28 23:38:02 -070041
Zack Williams2f5f2bd2017-12-01 15:04:22 -070042- name: DNS server on head node
Zack Williams5223dd92017-02-28 23:38:02 -070043 hosts: head
44 become: yes
45 roles:
Zack Williamsfe284a12017-07-01 11:00:04 -070046 - { role: dns-nsd, when: not use_maas }
Zack Williams503aabf2017-10-24 09:59:35 -070047 - { role: dns-unbound, when: not use_maas }
Zack Williams5223dd92017-02-28 23:38:02 -070048
49# needs to be in another set of plays so that nsd/unbound restart handlers run
50- name: Configure DNS resolution, DHCP on head node
51 hosts: head
52 become: yes
53 roles:
Zack Williamsfe284a12017-07-01 11:00:04 -070054 - { role: dns-configure, when: not use_maas }
Zack Williamsbf43d752017-07-01 15:27:11 -070055 - { role: dhcpd, when: not (use_maas or frontend_only) }
Zack Williams5223dd92017-02-28 23:38:02 -070056
57- name: Install apt-cacher-ng
58 hosts: head
59 become: yes
60 roles:
Zack Williams79286962017-07-10 12:24:37 -070061 - { role: apt-cacher-ng, when: use_apt_cache | default(True) }
Zack Williams5223dd92017-02-28 23:38:02 -070062
Zack Williamsfe284a12017-07-01 11:00:04 -070063- name: Install apache proxy
Zack Williams5223dd92017-02-28 23:38:02 -070064 hosts: head
65 become: yes
66 roles:
Zack Williams5223dd92017-02-28 23:38:02 -070067 - apache-proxy
68
Sapan Bhatiad23d8002018-01-02 17:04:05 -050069- name: Sysctl defaults
70 hosts: head
71 become: yes
72 roles:
73 - sysctl
Zack Williams2f5f2bd2017-12-01 15:04:22 -070074