Flatten Keepalived service configuration
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-flattening
This commit is contained in:
parent
a0cf19837b
commit
7345963531
@ -46,37 +46,61 @@ parameters:
|
|||||||
default: false
|
default: false
|
||||||
description: Whether or not restart Keepalived. Useful for Undercloud only.
|
description: Whether or not restart Keepalived. Useful for Undercloud only.
|
||||||
type: boolean
|
type: boolean
|
||||||
|
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}, '']}
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
|
|
||||||
ContainersCommon:
|
ContainersCommon:
|
||||||
type: ./containers-common.yaml
|
type: ../../docker/services/containers-common.yaml
|
||||||
|
|
||||||
KeepalivedBase:
|
|
||||||
type: ../../puppet/services/keepalived.yaml
|
|
||||||
properties:
|
|
||||||
EndpointMap: {get_param: EndpointMap}
|
|
||||||
ServiceData: {get_param: ServiceData}
|
|
||||||
ServiceNetMap: {get_param: ServiceNetMap}
|
|
||||||
DefaultPasswords: {get_param: DefaultPasswords}
|
|
||||||
RoleName: {get_param: RoleName}
|
|
||||||
RoleParameters: {get_param: RoleParameters}
|
|
||||||
|
|
||||||
outputs:
|
outputs:
|
||||||
role_data:
|
role_data:
|
||||||
description: Role data for the Keepalived API role.
|
description: Role data for the Keepalived role.
|
||||||
value:
|
value:
|
||||||
service_name: {get_attr: [KeepalivedBase, role_data, service_name]}
|
service_name: keepalived
|
||||||
|
monitoring_subscription: {get_param: MonitoringSubscriptionKeepalived}
|
||||||
config_settings:
|
config_settings:
|
||||||
map_merge:
|
map_merge:
|
||||||
- get_attr: [KeepalivedBase, role_data, config_settings]
|
|
||||||
- tripleo::keepalived:custom_vrrp_script: 'test -S /var/lib/haproxy/stats && echo "show info" | socat /var/lib/haproxy/stats stdio'
|
- tripleo::keepalived:custom_vrrp_script: 'test -S /var/lib/haproxy/stats && echo "show info" | socat /var/lib/haproxy/stats stdio'
|
||||||
service_config_settings: {get_attr: [KeepalivedBase, role_data, service_config_settings]}
|
- 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}
|
||||||
|
service_config_settings: {}
|
||||||
# BEGIN DOCKER SETTINGS
|
# BEGIN DOCKER SETTINGS
|
||||||
puppet_config:
|
puppet_config:
|
||||||
config_volume: 'keepalived'
|
config_volume: 'keepalived'
|
||||||
puppet_tags: 'file'
|
puppet_tags: 'file'
|
||||||
step_config: {get_attr: [KeepalivedBase, role_data, step_config]}
|
step_config: |
|
||||||
|
include ::tripleo::profile::base::keepalived
|
||||||
config_image: {get_param: DockerKeepalivedConfigImage}
|
config_image: {get_param: DockerKeepalivedConfigImage}
|
||||||
kolla_config:
|
kolla_config:
|
||||||
/var/lib/kolla/config_files/keepalived.json:
|
/var/lib/kolla/config_files/keepalived.json:
|
@ -1,7 +1,7 @@
|
|||||||
resource_registry:
|
resource_registry:
|
||||||
OS::TripleO::Services::Docker: ../puppet/services/docker.yaml
|
OS::TripleO::Services::Docker: ../puppet/services/docker.yaml
|
||||||
OS::TripleO::Services::HAproxy: ../docker/services/haproxy.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::Infra: ../extraconfig/services/openshift-infra.yaml
|
||||||
OS::TripleO::Services::OpenShift::Master: ../extraconfig/services/openshift-master.yaml
|
OS::TripleO::Services::OpenShift::Master: ../extraconfig/services/openshift-master.yaml
|
||||||
OS::TripleO::Services::OpenShift::Worker: ../extraconfig/services/openshift-worker.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
|
# DEPRECATED. This file will be removed in the Stein release as it is no longer
|
||||||
# needed
|
# needed
|
||||||
resource_registry:
|
resource_registry:
|
||||||
OS::TripleO::Services::Keepalived: ../../docker/services/keepalived.yaml
|
OS::TripleO::Services::Keepalived: ../../deployment/keepalived/keepalived-container-puppet.yaml
|
||||||
|
@ -181,7 +181,7 @@ resource_registry:
|
|||||||
OS::TripleO::Services::HAProxyPublicTLS: puppet/services/haproxy-public-tls-inject.yaml
|
OS::TripleO::Services::HAProxyPublicTLS: puppet/services/haproxy-public-tls-inject.yaml
|
||||||
OS::TripleO::Services::HAProxyInternalTLS: OS::Heat::None
|
OS::TripleO::Services::HAProxyInternalTLS: OS::Heat::None
|
||||||
OS::TripleO::Services::Iscsid: docker/services/iscsid.yaml
|
OS::TripleO::Services::Iscsid: docker/services/iscsid.yaml
|
||||||
OS::TripleO::Services::Keepalived: docker/services/keepalived.yaml
|
OS::TripleO::Services::Keepalived: deployment/keepalived/keepalived-container-puppet.yaml
|
||||||
OS::TripleO::Services::Memcached: docker/services/memcached.yaml
|
OS::TripleO::Services::Memcached: docker/services/memcached.yaml
|
||||||
OS::TripleO::Services::SaharaApi: OS::Heat::None
|
OS::TripleO::Services::SaharaApi: OS::Heat::None
|
||||||
OS::TripleO::Services::SaharaEngine: OS::Heat::None
|
OS::TripleO::Services::SaharaEngine: OS::Heat::None
|
||||||
|
@ -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
|
|
||||||
|
|
@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
upgrade:
|
||||||
|
- |
|
||||||
|
Installing Keepalived service on baremetal is no longer supported.
|
Loading…
Reference in New Issue
Block a user