7fbc4b098f
This change combines the previous puppet and docker files into a single file that performs the docker service installation and configuration. With this patch the baremetal version of glance services has been removed. Change-Id: Ie2ac2072f0742ec5e521fc6e3734e89f8a007077 Related-Blueprint: services-yaml-flattening
58 lines
1.8 KiB
YAML
58 lines
1.8 KiB
YAML
heat_template_version: rocky
|
|
|
|
description: >
|
|
OpenStack Glance Registry service, disabled since ocata
|
|
|
|
parameters:
|
|
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
|
|
EndpointMap:
|
|
default: {}
|
|
description: Mapping of service endpoint -> protocol. Typically set
|
|
via parameter_defaults in the resource registry.
|
|
type: json
|
|
|
|
outputs:
|
|
role_data:
|
|
description: Role data for the disabled Glance Registry role.
|
|
value:
|
|
service_name: glance_registry_disabled
|
|
upgrade_tasks: []
|
|
fast_forward_upgrade_tasks:
|
|
- when:
|
|
- step|int == 0
|
|
- release == 'ocata'
|
|
block:
|
|
- name: Check if glance_registry is deployed
|
|
command: systemctl is-enabled --quiet openstack-glance-registry
|
|
ignore_errors: True
|
|
register: glance_registry_enabled_result
|
|
- name: Set fact glance_registry_enabled
|
|
set_fact:
|
|
glance_registry_enabled: "{{ glance_registry_enabled_result.rc == 0 }}"
|
|
- name: Stop openstack-glance-registry
|
|
service: name=openstack-glance-registry state=stopped enabled=no
|
|
when:
|
|
- step|int == 1
|
|
- release == 'ocata'
|
|
- glance_registry_enabled|bool
|