5cce6b59ff
* API Versions 1.1 and 3 have been deprecated from nova, plays have been modified to completely remove v1.1 and make v3 optional via nova_v3_deprecated_but_enabled boolean. * Addition of v2.1 api configuration. * Elimination of the unused nova_api_ec2 container. * nova_spice_console has been renamed to nova_console and nova_spice_console_container has been renamed to nova_console_container to facilitate different consoles in the future. * Spice has been made the default console. * A standalone task and init scripts for nova_spice. - Fixed some typos - Modified HAProxy role to remove nova_api_ec2 and rename nova_spice_console to nova_console - Updated user_secrets.yml - Unbroke things that I broke Partially Implements Blueprint: master-kilofication Change-Id: Ia87dfb1e8c0316103a30e2121f11996a9ca87c25
113 lines
4.2 KiB
YAML
113 lines
4.2 KiB
YAML
---
|
|
# Copyright 2014, Rackspace US, Inc.
|
|
#
|
|
# 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.
|
|
|
|
- include: nova_upstart_common_init.yml
|
|
vars:
|
|
program_name: "{{ nova_metadata_program_name }}"
|
|
service_name: "{{ nova_service_name }}"
|
|
system_user: "{{ nova_system_user_name }}"
|
|
system_group: "{{ nova_system_group_name }}"
|
|
service_home: "{{ nova_system_home_folder }}"
|
|
when: inventory_hostname in groups['nova_api_metadata']
|
|
|
|
- include: nova_upstart_common_init.yml
|
|
vars:
|
|
program_name: "{{ nova_cert_program_name }}"
|
|
service_name: "{{ nova_service_name }}"
|
|
system_user: "{{ nova_system_user_name }}"
|
|
system_group: "{{ nova_system_group_name }}"
|
|
service_home: "{{ nova_system_home_folder }}"
|
|
when: inventory_hostname in groups['nova_cert']
|
|
|
|
- include: nova_upstart_common_init.yml
|
|
vars:
|
|
program_name: "{{ nova_conductor_program_name }}"
|
|
service_name: "{{ nova_service_name }}"
|
|
system_user: "{{ nova_system_user_name }}"
|
|
system_group: "{{ nova_system_group_name }}"
|
|
service_home: "{{ nova_system_home_folder }}"
|
|
when: inventory_hostname in groups['nova_conductor']
|
|
|
|
- include: nova_upstart_common_init.yml
|
|
vars:
|
|
program_name: "{{ nova_program_name }}"
|
|
service_name: "{{ nova_service_name }}"
|
|
system_user: "{{ nova_system_user_name }}"
|
|
system_group: "{{ nova_system_group_name }}"
|
|
service_home: "{{ nova_system_home_folder }}"
|
|
when: inventory_hostname in groups['nova_api_os_compute']
|
|
|
|
- include: nova_upstart_common_init.yml
|
|
vars:
|
|
program_name: "{{ nova_s3_program_name }}"
|
|
service_name: "{{ nova_service_name }}"
|
|
system_user: "{{ nova_system_user_name }}"
|
|
system_group: "{{ nova_system_group_name }}"
|
|
service_home: "{{ nova_system_home_folder }}"
|
|
when: >
|
|
inventory_hostname in groups['nova_api_os_compute'] and
|
|
(nova_ec2_deprecated_but_enabled == true or nova_ec2_deprecated_but_enabled == 'True')
|
|
|
|
- include: nova_upstart_common_init.yml
|
|
vars:
|
|
program_name: "{{ nova_ec2_program_name }}"
|
|
service_name: "{{ nova_service_name }}"
|
|
system_user: "{{ nova_system_user_name }}"
|
|
system_group: "{{ nova_system_group_name }}"
|
|
service_home: "{{ nova_system_home_folder }}"
|
|
when: >
|
|
inventory_hostname in groups['nova_api_os_compute'] and
|
|
(nova_ec2_deprecated_but_enabled == true or nova_ec2_deprecated_but_enabled == 'True')
|
|
|
|
- include: nova_upstart_common_init.yml
|
|
vars:
|
|
program_name: "{{ nova_scheduler_program_name }}"
|
|
service_name: "{{ nova_service_name }}"
|
|
system_user: "{{ nova_system_user_name }}"
|
|
system_group: "{{ nova_system_group_name }}"
|
|
service_home: "{{ nova_system_home_folder }}"
|
|
when: inventory_hostname in groups['nova_scheduler']
|
|
|
|
- include: nova_upstart_common_init.yml
|
|
vars:
|
|
program_name: "{{ nova_compute_program_name }}"
|
|
service_name: "{{ nova_service_name }}"
|
|
system_user: "{{ nova_system_user_name }}"
|
|
system_group: "{{ nova_system_group_name }}"
|
|
service_home: "{{ nova_system_home_folder }}"
|
|
when: inventory_hostname in groups['nova_compute']
|
|
|
|
# Upstart init script for spice console.
|
|
- include: nova_upstart_common_init.yml
|
|
vars:
|
|
program_name: "{{ nova_spice_program_name }}"
|
|
service_name: "{{ nova_service_name }}"
|
|
system_user: "{{ nova_system_user_name }}"
|
|
system_group: "{{ nova_system_group_name }}"
|
|
service_home: "{{ nova_system_home_folder }}"
|
|
when: >
|
|
inventory_hostname in groups ['nova_console'] and
|
|
nova_console_type == "spice"
|
|
|
|
- include: nova_upstart_common_init.yml
|
|
vars:
|
|
program_name: "{{ nova_consoleauth_program_name }}"
|
|
service_name: "{{ nova_service_name }}"
|
|
system_user: "{{ nova_system_user_name }}"
|
|
system_group: "{{ nova_system_group_name }}"
|
|
service_home: "{{ nova_system_home_folder }}"
|
|
when: inventory_hostname in groups['nova_console']
|
|
|