Browse Source
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 keepalived service have been removed. Change-Id: Ic0ddf1174e1d0a62f83f26f0ca6bc29ec7b078b7 Related-Blueprint: services-yaml-flatteningchanges/82/624182/6
7 changed files with 49 additions and 109 deletions
@ -1,7 +1,7 @@
|
||||
resource_registry: |
||||
OS::TripleO::Services::Docker: ../puppet/services/docker.yaml |
||||
OS::TripleO::Services::HAproxy: ../docker/services/haproxy.yaml |
||||
OS::TripleO::Services::Keepalived: ../docker/services/keepalived.yaml |
||||
OS::TripleO::Services::Keepalived: ../deployment/keepalived/keepalived-container-puppet.yaml |
||||
OS::TripleO::Services::OpenShift::Infra: ../extraconfig/services/openshift-infra.yaml |
||||
OS::TripleO::Services::OpenShift::Master: ../extraconfig/services/openshift-master.yaml |
||||
OS::TripleO::Services::OpenShift::Worker: ../extraconfig/services/openshift-worker.yaml |
||||
|
@ -1,2 +0,0 @@
|
||||
resource_registry: |
||||
OS::TripleO::Services::UndercloudKeepalived: ../../puppet/services/keepalived.yaml |
@ -1,4 +1,4 @@
|
||||
# DEPRECATED. This file will be removed in the Stein release as it is no longer |
||||
# needed |
||||
resource_registry: |
||||
OS::TripleO::Services::Keepalived: ../../docker/services/keepalived.yaml |
||||
OS::TripleO::Services::Keepalived: ../../deployment/keepalived/keepalived-container-puppet.yaml |
||||
|
@ -1,86 +0,0 @@
|
||||
heat_template_version: rocky |
||||
|
||||
description: > |
||||
Keepalived service configured with Puppet |
||||
|
||||
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 |
||||
ControlVirtualInterface: |
||||
default: '' |
||||
description: > |
||||
Interface where virtual ip will be assigned. This value will be |
||||
automatically set by the deployment tool. Overriding here will |
||||
override automatic setting. |
||||
type: string |
||||
PublicVirtualInterface: |
||||
default: '' |
||||
description: > |
||||
Interface where virtual ip will be assigned. This value will be |
||||
automatically set by the deployment tool. Overriding here will |
||||
override automatic setting. |
||||
type: string |
||||
MonitoringSubscriptionKeepalived: |
||||
default: 'overcloud-keepalived' |
||||
type: string |
||||
|
||||
conditions: |
||||
|
||||
control_iface_empty: {equals : [{get_param: ControlVirtualInterface}, '']} |
||||
public_iface_empty: {equals : [{get_param: PublicVirtualInterface}, '']} |
||||
|
||||
outputs: |
||||
role_data: |
||||
description: Role data for the Keepalived role. |
||||
value: |
||||
service_name: keepalived |
||||
monitoring_subscription: {get_param: MonitoringSubscriptionKeepalived} |
||||
config_settings: |
||||
map_merge: |
||||
- tripleo::keepalived::firewall_rules: |
||||
'106 keepalived vrrp': |
||||
proto: vrrp |
||||
- |
||||
if: |
||||
- control_iface_empty |
||||
- {} |
||||
- tripleo::keepalived::control_virtual_interface: {get_param: ControlVirtualInterface} |
||||
- |
||||
if: |
||||
- public_iface_empty |
||||
- {} |
||||
- tripleo::keepalived::public_virtual_interface: {get_param: PublicVirtualInterface} |
||||
step_config: | |
||||
include ::tripleo::profile::base::keepalived |
||||
upgrade_tasks: |
||||
- name: Stop keepalived service |
||||
when: step|int == 1 |
||||
service: name=keepalived state=stopped |
||||
- name: Start keepalived service |
||||
when: step|int == 4 # Needed at step 4 for mysql |
||||
service: name=keepalived state=started |
||||
|
Loading…
Reference in new issue