blob: 0e4bf659cb67a982ccd53f2c812dc7df91a325b2 [file] [log] [blame]
Zack Williams5b43d682018-01-08 13:29:40 -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
16
Zack Williams2478b302017-02-14 10:42:55 -070017# compute-node-refresh-playbook.yml
18# Re-adds compute nodes to a XOS after a teardown cycle
19# This analogous to the legacy `make vtn` command in service-profile
20# On physical/CiaB w/MaaS:
21# ansible-playbook -i /etc/maas/ansible/pod-inventory --extra-vars=@/opt/cord/build/genconfig/config.yml compute-node-refresh-playbook.yml
22
Zack Williams5b43d682018-01-08 13:29:40 -070023- name: Get setup information from compute nodes
24 hosts: compute
25 tasks:
26 - name: run setup on compute nodes
27 setup:
28
Zack Williams2478b302017-02-14 10:42:55 -070029- name: Recreate compute node configuration
30 hosts: head
31 roles:
32 - compute-node-config
33
Zack Williams2478b302017-02-14 10:42:55 -070034- name: Enable compute nodes in XOS
Matteo Scandolo1ed76b82017-12-05 13:58:22 -080035 hosts: head
Zack Williams2478b302017-02-14 10:42:55 -070036 roles:
37 - compute-node-enable
38