Zack Williams | 2f5f2bd | 2017-12-01 15:04:22 -0700 | [diff] [blame] | 1 | --- |
Matteo Scandolo | 3896c47 | 2017-08-01 13:31:42 -0700 | [diff] [blame] | 2 | # 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 Williams | 5223dd9 | 2017-02-28 23:38:02 -0700 | [diff] [blame] | 16 | # prep-computenode-playbook.yml |
| 17 | # Prepares a compute node on a CORD pod |
| 18 | |
Zack Williams | 5223dd9 | 2017-02-28 23:38:02 -0700 | [diff] [blame] | 19 | - name: Common prep, install SSL certificates |
| 20 | hosts: compute |
| 21 | become: yes |
| 22 | roles: |
| 23 | - common-prep |
Zack Williams | fe284a1 | 2017-07-01 11:00:04 -0700 | [diff] [blame] | 24 | - { role: pki-install, when: not use_maas } |
Zack Williams | 5223dd9 | 2017-02-28 23:38:02 -0700 | [diff] [blame] | 25 | |
Zack Williams | 2f5f2bd | 2017-12-01 15:04:22 -0700 | [diff] [blame] | 26 | - name: Configure network interfaces |
Zack Williams | 5223dd9 | 2017-02-28 23:38:02 -0700 | [diff] [blame] | 27 | hosts: compute |
| 28 | become: yes |
| 29 | roles: |
Zack Williams | fe284a1 | 2017-07-01 11:00:04 -0700 | [diff] [blame] | 30 | - { role: interface-config, when: not use_maas } |
Zack Williams | 5223dd9 | 2017-02-28 23:38:02 -0700 | [diff] [blame] | 31 | |
| 32 | - name: Use headnode DNS server |
| 33 | hosts: compute |
| 34 | become: yes |
| 35 | roles: |
Zack Williams | fe284a1 | 2017-07-01 11:00:04 -0700 | [diff] [blame] | 36 | - { role: dns-configure, when: not use_maas } |
Zack Williams | 5223dd9 | 2017-02-28 23:38:02 -0700 | [diff] [blame] | 37 | |
Zack Williams | 65edc22 | 2018-01-30 18:52:30 -0700 | [diff] [blame] | 38 | - 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 Williams | 438f8d6 | 2018-02-14 10:14:27 -0700 | [diff] [blame] | 49 | - name: Finish prep of compute node |
| 50 | hosts: compute |
| 51 | become: yes |
| 52 | roles: |
| 53 | - compute-prep |
| 54 | |