d1035703b7
The tripleo-docker-rm role has been replaced by tripleo-container-rm [0].
This role will identify the docker engine via the container_cli variable
and perform a deletion of that container. However, these tasks inside the
post_upgrade_tasks section were thought to remove the old docker containers
after upgrading from rocky to stein, in which podman starts to be the
container engine by default.
For that reason, we need to ensure that the container engine in which the
containers are removed is docker, as otherwise we will be removing the
podman container and the deployment steps will fail.
Closes-Bug: #1836531
[0] - 2135446a35
Depends-On: https://review.opendev.org/#/c/671698/
Change-Id: Ib139a1d77f71fc32a49c9878d1b4a6d07564e9dc
225 lines
8.1 KiB
YAML
225 lines
8.1 KiB
YAML
heat_template_version: rocky
|
|
|
|
description: >
|
|
OpenStack containerized Nova Scheduler service
|
|
|
|
parameters:
|
|
ContainerNovaSchedulerImage:
|
|
description: image
|
|
type: string
|
|
ContainerNovaConfigImage:
|
|
description: The container image to use for the nova config_volume
|
|
type: string
|
|
NovaSchedulerLoggingSource:
|
|
type: json
|
|
default:
|
|
tag: openstack.nova.scheduler
|
|
path: /var/log/containers/nova/nova-scheduler.log
|
|
EndpointMap:
|
|
default: {}
|
|
description: Mapping of service endpoint -> protocol. Typically set
|
|
via parameter_defaults in the resource registry.
|
|
type: json
|
|
ServiceData:
|
|
default: {}
|
|
description: Dictionary packing service data
|
|
type: json
|
|
ServiceNetMap:
|
|
default: {}
|
|
description: Mapping of service_name -> network name. Typically set
|
|
via parameter_defaults in the resource registry. This
|
|
mapping overrides those in ServiceNetMapDefaults.
|
|
type: json
|
|
DefaultPasswords:
|
|
default: {}
|
|
type: json
|
|
RoleName:
|
|
default: ''
|
|
description: Role name on which the service is applied
|
|
type: string
|
|
RoleParameters:
|
|
default: {}
|
|
description: Parameters specific to the role
|
|
type: json
|
|
NovaSchedulerAvailableFilters:
|
|
default: []
|
|
description: List of scheduler available filters
|
|
type: comma_delimited_list
|
|
NovaSchedulerDefaultFilters:
|
|
type: comma_delimited_list
|
|
default: []
|
|
description: >
|
|
An array of filters used by Nova to filter a node.These filters will be
|
|
applied in the order they are listed, so place your most restrictive
|
|
filters first to make the filtering process more efficient.
|
|
NovaSchedulerMaxAttempts:
|
|
type: number
|
|
default: 3
|
|
description: >
|
|
Maximum number of attempts the scheduler will make when deploying the
|
|
instance. You should keep it greater or equal to the number of bare
|
|
metal nodes you expect to deploy at once to work around potential race
|
|
conditions when scheduling.
|
|
MonitoringSubscriptionNovaScheduler:
|
|
default: 'overcloud-nova-scheduler'
|
|
type: string
|
|
NovaSchedulerDiscoverHostsInCellsInterval:
|
|
type: number
|
|
default: -1
|
|
description: >
|
|
This value controls how often (in seconds) the scheduler should
|
|
attempt to discover new hosts that have been added to cells.
|
|
The default value of -1 disables the periodic task completely.
|
|
It is recommended to set this parameter for deployments using Ironic.
|
|
NovaSchedulerWorkers:
|
|
default: 0
|
|
description: Number of workers for Nova Scheduler services.
|
|
type: number
|
|
NovaSchedulerQueryImageType:
|
|
type: boolean
|
|
default: true
|
|
description: >
|
|
This setting causes the scheduler to ask placement only for compute
|
|
hosts that support the disk_format of the image used in the request.
|
|
NovaSchedulerLimitTenantsToPlacementAggregate:
|
|
default: false
|
|
description: >
|
|
This value allows to have tenant isolation with placement. It ensures
|
|
hosts in tenant-isolated host aggregate and availability zones will
|
|
only be available to specific set of tenants.
|
|
type: boolean
|
|
|
|
conditions:
|
|
nova_scheduler_workers_zero: {equals : [{get_param: NovaSchedulerWorkers}, 0]}
|
|
|
|
resources:
|
|
|
|
ContainersCommon:
|
|
type: ../containers-common.yaml
|
|
|
|
MySQLClient:
|
|
type: ../../deployment/database/mysql-client.yaml
|
|
|
|
NovaLogging:
|
|
type: OS::TripleO::Services::Logging::NovaCommon
|
|
properties:
|
|
ContainerNovaImage: {get_param: ContainerNovaSchedulerImage}
|
|
NovaServiceName: 'scheduler'
|
|
|
|
NovaBase:
|
|
type: ./nova-base-puppet.yaml
|
|
properties:
|
|
ServiceData: {get_param: ServiceData}
|
|
ServiceNetMap: {get_param: ServiceNetMap}
|
|
DefaultPasswords: {get_param: DefaultPasswords}
|
|
EndpointMap: {get_param: EndpointMap}
|
|
RoleName: {get_param: RoleName}
|
|
RoleParameters: {get_param: RoleParameters}
|
|
|
|
|
|
outputs:
|
|
role_data:
|
|
description: Role data for the Nova Scheduler service.
|
|
value:
|
|
service_name: nova_scheduler
|
|
monitoring_subscription: {get_param: MonitoringSubscriptionNovaScheduler}
|
|
config_settings:
|
|
map_merge:
|
|
- {get_attr: [NovaBase, role_data, config_settings]}
|
|
- {get_attr: [NovaLogging, config_settings]}
|
|
- nova::scheduler::filter::scheduler_available_filters: {get_param: NovaSchedulerAvailableFilters}
|
|
nova::scheduler::filter::scheduler_default_filters: {get_param: NovaSchedulerDefaultFilters}
|
|
nova::scheduler::filter::scheduler_max_attempts: {get_param: NovaSchedulerMaxAttempts}
|
|
nova::scheduler::discover_hosts_in_cells_interval: {get_param: NovaSchedulerDiscoverHostsInCellsInterval}
|
|
nova::scheduler::query_placement_for_image_type_support: {get_param: NovaSchedulerQueryImageType}
|
|
nova::scheduler::limit_tenants_to_placement_aggregate: {get_param: NovaSchedulerLimitTenantsToPlacementAggregate}
|
|
-
|
|
if:
|
|
- nova_scheduler_workers_zero
|
|
- {}
|
|
- nova::scheduler::workers: {get_param: NovaSchedulerWorkers}
|
|
service_config_settings:
|
|
fluentd:
|
|
tripleo_fluentd_groups_nova_scheduler:
|
|
- nova
|
|
tripleo_fluentd_sources_nova_scheduler:
|
|
- {get_param: NovaSchedulerLoggingSource}
|
|
# BEGIN DOCKER SETTINGS
|
|
puppet_config:
|
|
config_volume: nova
|
|
puppet_tags: nova_config
|
|
step_config:
|
|
list_join:
|
|
- "\n"
|
|
- - include tripleo::profile::base::nova::scheduler
|
|
- {get_attr: [MySQLClient, role_data, step_config]}
|
|
config_image: {get_param: ContainerNovaConfigImage}
|
|
kolla_config:
|
|
/var/lib/kolla/config_files/nova_scheduler.json:
|
|
command:
|
|
list_join:
|
|
- ' '
|
|
- - /usr/bin/nova-scheduler
|
|
- get_attr: [NovaLogging, cmd_extra_args]
|
|
config_files:
|
|
- source: "/var/lib/kolla/config_files/src/*"
|
|
dest: "/"
|
|
merge: true
|
|
preserve_properties: true
|
|
permissions:
|
|
- path: /var/log/nova
|
|
owner: nova:nova
|
|
recurse: true
|
|
docker_config:
|
|
step_4:
|
|
nova_scheduler:
|
|
image: {get_param: ContainerNovaSchedulerImage}
|
|
net: host
|
|
privileged: false
|
|
restart: always
|
|
healthcheck: {get_attr: [ContainersCommon, healthcheck_rpc_port]}
|
|
volumes:
|
|
list_concat:
|
|
- {get_attr: [ContainersCommon, volumes]}
|
|
- {get_attr: [NovaLogging, volumes]}
|
|
-
|
|
- /var/lib/kolla/config_files/nova_scheduler.json:/var/lib/kolla/config_files/config.json:ro
|
|
- /var/lib/config-data/puppet-generated/nova/:/var/lib/kolla/config_files/src:ro
|
|
- /run:/run
|
|
environment:
|
|
- KOLLA_CONFIG_STRATEGY=COPY_ALWAYS
|
|
host_prep_tasks:
|
|
list_concat:
|
|
- {get_attr: [NovaLogging, host_prep_tasks]}
|
|
- - name: enable virt_sandbox_use_netlink for healthcheck
|
|
seboolean:
|
|
name: virt_sandbox_use_netlink
|
|
persistent: yes
|
|
state: yes
|
|
fast_forward_upgrade_tasks:
|
|
- when:
|
|
- step|int == 0
|
|
- release == 'ocata'
|
|
block:
|
|
- name: Check if nova_scheduler is deployed
|
|
command: systemctl is-enabled --quiet openstack-nova-scheduler
|
|
ignore_errors: True
|
|
register: nova_scheduler_enabled_result
|
|
- name: Set fact nova_scheduler_enabled
|
|
set_fact:
|
|
nova_scheduler_enabled: "{{ nova_scheduler_enabled_result.rc == 0 }}"
|
|
- name: Stop and disable nova-scheduler service
|
|
service: name=openstack-nova-scheduler state=stopped
|
|
when:
|
|
- step|int == 1
|
|
- release == 'ocata'
|
|
- nova_scheduler_enabled|bool
|
|
post_upgrade_tasks:
|
|
- when: step|int == 1
|
|
import_role:
|
|
name: tripleo-docker-rm
|
|
vars:
|
|
containers_to_rm:
|
|
- nova_scheduler
|
|
tripleo_container_cli: "docker"
|