022d05e53e
- This change decomposes the install ironic role into 3 phases. - The install phase will install all packages. - The bootstrap phase generates all config files and configures the db. - The start phase starts all biforst/ironic services. - This change adds 3 new variable (skip_package_install, skip_bootstrap, skip_start) to optionally skip the install, bootstrap and start phases - This change splits the inspector_install.yml to reflect the 3 phases. Change-Id: Ifdfc935f594e29eb361ac31e8ae328744848258b
24 lines
849 B
YAML
24 lines
849 B
YAML
# Copyright (c) 2015 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# 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 writing, 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.
|
|
---
|
|
- name: "Inspector - PIP Install"
|
|
include: pip_install.yml
|
|
package=ironic-inspector
|
|
state=latest
|
|
- name: "Inspector - PIP client install"
|
|
include: pip_install.yml
|
|
package=python-ironic-inspector-client
|
|
state=latest
|