blob: 4de63922940071c22b07b9fc8c2413e8a9472645 [file] [log] [blame]
Zack Williams2f5f2bd2017-12-01 15:04:22 -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-computenode-playbook.yml
17# Prepares a compute node on a CORD pod
18
Zack Williams5223dd92017-02-28 23:38:02 -070019- name: Common prep, install SSL certificates
20 hosts: compute
21 become: yes
22 roles:
23 - common-prep
Zack Williamsfe284a12017-07-01 11:00:04 -070024 - { role: pki-install, when: not use_maas }
Zack Williams5223dd92017-02-28 23:38:02 -070025
Zack Williams2f5f2bd2017-12-01 15:04:22 -070026- name: Configure network interfaces
Zack Williams5223dd92017-02-28 23:38:02 -070027 hosts: compute
28 become: yes
29 roles:
Zack Williamsfe284a12017-07-01 11:00:04 -070030 - { role: interface-config, when: not use_maas }
Zack Williams5223dd92017-02-28 23:38:02 -070031
32- name: Use headnode DNS server
33 hosts: compute
34 become: yes
35 roles:
Zack Williamsfe284a12017-07-01 11:00:04 -070036 - { role: dns-configure, when: not use_maas }
Zack Williams5223dd92017-02-28 23:38:02 -070037
Zack Williams65edc222018-01-30 18:52:30 -070038- name: Install docker and configure it
39 hosts: compute
40 roles:
41 - { role: docker-install, when: use_secure_docker_registry | default(True) }
42
43- name: Configure docker to use head docker registry
44 hosts: compute
45 become: yes
46 roles:
47 - { role: docker-registry-client, when: use_secure_docker_registry | default(True) }
48
Zack Williams438f8d62018-02-14 10:14:27 -070049- name: Finish prep of compute node
50 hosts: compute
51 become: yes
52 roles:
53 - compute-prep
54