Merge "flatten the fluentd service configurations"
This commit is contained in:
commit
85e14e2245
@ -20,7 +20,7 @@ resource_registry:
|
|||||||
OS::TripleO::Services::CinderVolume: ../../deployment/cinder/cinder-volume-pacemaker-puppet.yaml
|
OS::TripleO::Services::CinderVolume: ../../deployment/cinder/cinder-volume-pacemaker-puppet.yaml
|
||||||
OS::TripleO::Services::Keepalived: OS::Heat::None
|
OS::TripleO::Services::Keepalived: OS::Heat::None
|
||||||
#Needs to run scenario001
|
#Needs to run scenario001
|
||||||
OS::TripleO::Services::Fluentd: ../../docker/services/fluentd.yaml
|
OS::TripleO::Services::Fluentd: ../../deployment/logging/fluentd-container-puppet.yaml
|
||||||
# NOTE(mmagr): We need to disable Sensu client deployment for now as the container health check is based
|
# NOTE(mmagr): We need to disable Sensu client deployment for now as the container health check is based
|
||||||
# on successful RabbitMQ connection, which does not happen in this case. We can enable it again when we
|
# on successful RabbitMQ connection, which does not happen in this case. We can enable it again when we
|
||||||
# will implement default connection to overcloud RabbitMQ instance,
|
# will implement default connection to overcloud RabbitMQ instance,
|
||||||
|
@ -32,7 +32,7 @@ resource_registry:
|
|||||||
OS::TripleO::Services::CinderVolume: ../../deployment/cinder/cinder-volume-pacemaker-puppet.yaml
|
OS::TripleO::Services::CinderVolume: ../../deployment/cinder/cinder-volume-pacemaker-puppet.yaml
|
||||||
OS::TripleO::Services::Keepalived: OS::Heat::None
|
OS::TripleO::Services::Keepalived: OS::Heat::None
|
||||||
#Needs to run scenario001
|
#Needs to run scenario001
|
||||||
OS::TripleO::Services::Fluentd: ../../docker/services/fluentd.yaml
|
OS::TripleO::Services::Fluentd: ../../deployment/logging/fluentd-container-puppet.yaml
|
||||||
# NOTE(mmagr): We need to disable Sensu client deployment for now as the container health check is based
|
# NOTE(mmagr): We need to disable Sensu client deployment for now as the container health check is based
|
||||||
# on successful RabbitMQ connection, which does not happen in this case. We can enable it again when we
|
# on successful RabbitMQ connection, which does not happen in this case. We can enable it again when we
|
||||||
# will implement default connection to overcloud RabbitMQ instance,
|
# will implement default connection to overcloud RabbitMQ instance,
|
||||||
|
@ -20,7 +20,7 @@ resource_registry:
|
|||||||
# Some infra instances don't pass the ping test but are otherwise working.
|
# Some infra instances don't pass the ping test but are otherwise working.
|
||||||
# Since the OVB jobs also test this functionality we can shut it off here.
|
# Since the OVB jobs also test this functionality we can shut it off here.
|
||||||
OS::TripleO::AllNodes::Validation: ../common/all-nodes-validation-disabled.yaml
|
OS::TripleO::AllNodes::Validation: ../common/all-nodes-validation-disabled.yaml
|
||||||
OS::TripleO::Services::Fluentd: ../../docker/services/fluentd.yaml
|
OS::TripleO::Services::Fluentd: ../../deployment/logging/fluentd-container-puppet.yaml
|
||||||
|
|
||||||
parameter_defaults:
|
parameter_defaults:
|
||||||
ControllerServices:
|
ControllerServices:
|
||||||
|
@ -31,7 +31,7 @@ resource_registry:
|
|||||||
# Some infra instances don't pass the ping test but are otherwise working.
|
# Some infra instances don't pass the ping test but are otherwise working.
|
||||||
# Since the OVB jobs also test this functionality we can shut it off here.
|
# Since the OVB jobs also test this functionality we can shut it off here.
|
||||||
OS::TripleO::AllNodes::Validation: ../common/all-nodes-validation-disabled.yaml
|
OS::TripleO::AllNodes::Validation: ../common/all-nodes-validation-disabled.yaml
|
||||||
OS::TripleO::Services::Fluentd: ../../docker/services/fluentd.yaml
|
OS::TripleO::Services::Fluentd: ../../deployment/logging/fluentd-container-puppet.yaml
|
||||||
OS::TripleO::Services::Horizon: OS::Heat::None
|
OS::TripleO::Services::Horizon: OS::Heat::None
|
||||||
|
|
||||||
parameter_defaults:
|
parameter_defaults:
|
||||||
|
@ -41,32 +41,56 @@ parameters:
|
|||||||
resources:
|
resources:
|
||||||
|
|
||||||
ContainersCommon:
|
ContainersCommon:
|
||||||
type: ./containers-common.yaml
|
type: ../../docker/services/containers-common.yaml
|
||||||
|
|
||||||
FluentdClientBase:
|
LoggingConfiguration:
|
||||||
type: ../../puppet/services/logging/fluentd.yaml
|
type: OS::TripleO::LoggingConfiguration
|
||||||
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 fluentd role.
|
description: Role data for the fluentd role.
|
||||||
value:
|
value:
|
||||||
service_name: {get_attr: [FluentdClientBase, role_data, service_name]}
|
service_name: fluentd
|
||||||
config_settings:
|
config_settings:
|
||||||
map_merge:
|
fluentd::package_name: fluentd
|
||||||
- {get_attr: [FluentdClientBase, role_data, config_settings]}
|
fluentd::service_name: fluentd
|
||||||
|
fluentd::config_file: /etc/fluentd/fluent.conf
|
||||||
|
fluentd::config_owner: fluentd
|
||||||
|
fluentd::config_group: fluentd
|
||||||
|
fluentd::config_path: /etc/fluentd/config.d
|
||||||
|
fluentd::plugin_provider: yum
|
||||||
|
fluentd::service_provider: systemd
|
||||||
|
fluentd::repo_install: false
|
||||||
|
tripleo::profile::base::logging::fluentd::fluentd_servers:
|
||||||
|
get_attr: [LoggingConfiguration, LoggingServers]
|
||||||
|
tripleo::profile::base::logging::fluentd::fluentd_default_format:
|
||||||
|
get_attr: [LoggingConfiguration, LoggingDefaultFormat]
|
||||||
|
tripleo::profile::base::logging::fluentd::fluentd_filters:
|
||||||
|
yaql:
|
||||||
|
expression: >
|
||||||
|
$.data.filters.flatten().where($)
|
||||||
|
data:
|
||||||
|
filters:
|
||||||
|
- get_attr: [LoggingConfiguration, LoggingDefaultFilters]
|
||||||
|
- get_attr: [LoggingConfiguration, LoggingExtraFilters]
|
||||||
|
tripleo::profile::base::logging::fluentd::fluentd_pos_file_path:
|
||||||
|
get_attr: [LoggingConfiguration, LoggingPosFilePath]
|
||||||
|
tripleo::profile::base::logging::fluentd::fluentd_use_ssl:
|
||||||
|
get_attr: [LoggingConfiguration, LoggingUsesSSL]
|
||||||
|
tripleo::profile::base::logging::fluentd::fluentd_ssl_certificate:
|
||||||
|
get_attr: [LoggingConfiguration, LoggingSSLCertificate]
|
||||||
|
tripleo::profile::base::logging::fluentd::fluentd_ssl_key:
|
||||||
|
get_attr: [LoggingConfiguration, LoggingSSLKey]
|
||||||
|
tripleo::profile::base::logging::fluentd::fluentd_ssl_key_passphrase:
|
||||||
|
get_attr: [LoggingConfiguration, LoggingSSLKeyPassphrase]
|
||||||
|
tripleo::profile::base::logging::fluentd::fluentd_shared_key:
|
||||||
|
get_attr: [LoggingConfiguration, LoggingSharedKey]
|
||||||
# BEGIN DOCKER SETTINGS
|
# BEGIN DOCKER SETTINGS
|
||||||
puppet_config:
|
puppet_config:
|
||||||
config_volume: fluentd
|
config_volume: fluentd
|
||||||
puppet_tags: config
|
puppet_tags: config
|
||||||
step_config:
|
step_config: |
|
||||||
get_attr: [FluentdClientBase, role_data, step_config]
|
include ::tripleo::profile::base::logging::fluentd
|
||||||
config_image: {get_param: DockerFluentdConfigImage}
|
config_image: {get_param: DockerFluentdConfigImage}
|
||||||
kolla_config:
|
kolla_config:
|
||||||
/var/lib/kolla/config_files/fluentd.json:
|
/var/lib/kolla/config_files/fluentd.json:
|
@ -6,7 +6,7 @@ resource_registry:
|
|||||||
OS::TripleO::Services::ComputeNeutronOvsAgentAlt: ../deployment/neutron/neutron-ovs-agent-container-puppet.yaml
|
OS::TripleO::Services::ComputeNeutronOvsAgentAlt: ../deployment/neutron/neutron-ovs-agent-container-puppet.yaml
|
||||||
OS::TripleO::Services::FluentdAlt: OS::Heat::None
|
OS::TripleO::Services::FluentdAlt: OS::Heat::None
|
||||||
# If enabling fluentd you'll need provide the following in a specific resource_registry
|
# If enabling fluentd you'll need provide the following in a specific resource_registry
|
||||||
# OS::TripleO::Services::FluentdAlt: ../puppet/services/logging/fluentd.yaml
|
# OS::TripleO::Services::FluentdAlt: ../deployment/logging/fluentd-container-puppet.yaml
|
||||||
OS::TripleO::Services::IscsidAlt: ../deployment/iscsid/iscsid-container-puppet.yaml
|
OS::TripleO::Services::IscsidAlt: ../deployment/iscsid/iscsid-container-puppet.yaml
|
||||||
OS::TripleO::Services::NovaComputeAlt: ../deployment/nova/nova-compute-container-puppet.yaml
|
OS::TripleO::Services::NovaComputeAlt: ../deployment/nova/nova-compute-container-puppet.yaml
|
||||||
OS::TripleO::Services::NovaLibvirtAlt: ../deployment/nova/nova-libvirt-container-puppet.yaml
|
OS::TripleO::Services::NovaLibvirtAlt: ../deployment/nova/nova-libvirt-container-puppet.yaml
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
## logging agents
|
## logging agents
|
||||||
|
|
||||||
resource_registry:
|
resource_registry:
|
||||||
OS::TripleO::Services::Fluentd: ../docker/services/fluentd.yaml
|
OS::TripleO::Services::Fluentd: ../deployment/logging/fluentd-container-puppet.yaml
|
||||||
|
|
||||||
#parameter_defaults:
|
#parameter_defaults:
|
||||||
|
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
resource_registry:
|
resource_registry:
|
||||||
OS::TripleO::Services::Fluentd: ../../puppet/services/logging/fluentd.yaml
|
OS::TripleO::Services::Fluentd: ../../deployment/logging/fluentd-container-puppet.yaml
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
resource_registry:
|
resource_registry:
|
||||||
OS::TripleO::Services::Fluentd: ../../docker/services/fluentd.yaml
|
OS::TripleO::Services::Fluentd: ../../deployment/logging/fluentd-container-puppet.yaml
|
||||||
|
@ -243,7 +243,7 @@ resource_registry:
|
|||||||
OS::TripleO::Services::TripleoValidations: OS::Heat::None
|
OS::TripleO::Services::TripleoValidations: OS::Heat::None
|
||||||
OS::TripleO::Services::UndercloudUpgrade: OS::Heat::None
|
OS::TripleO::Services::UndercloudUpgrade: OS::Heat::None
|
||||||
OS::TripleO::Services::Collectd: OS::Heat::None
|
OS::TripleO::Services::Collectd: OS::Heat::None
|
||||||
OS::TripleO::LoggingConfiguration: puppet/services/logging/fluentd-config.yaml
|
OS::TripleO::LoggingConfiguration: deployment/logging/fluentd-config.yaml
|
||||||
OS::TripleO::Services::ManilaApi: OS::Heat::None
|
OS::TripleO::Services::ManilaApi: OS::Heat::None
|
||||||
OS::TripleO::Services::ManilaScheduler: OS::Heat::None
|
OS::TripleO::Services::ManilaScheduler: OS::Heat::None
|
||||||
OS::TripleO::Services::ManilaShare: OS::Heat::None
|
OS::TripleO::Services::ManilaShare: OS::Heat::None
|
||||||
|
@ -1,82 +0,0 @@
|
|||||||
heat_template_version: rocky
|
|
||||||
|
|
||||||
description: >
|
|
||||||
Fluentd client configured with Puppet.
|
|
||||||
This service is deprecated and will be removed in future releases.
|
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
resources:
|
|
||||||
|
|
||||||
LoggingConfiguration:
|
|
||||||
type: OS::TripleO::LoggingConfiguration
|
|
||||||
|
|
||||||
outputs:
|
|
||||||
role_data:
|
|
||||||
description: Role data for the Fluentd client role.
|
|
||||||
value:
|
|
||||||
service_name: fluentd
|
|
||||||
config_settings:
|
|
||||||
fluentd::package_name: fluentd
|
|
||||||
fluentd::service_name: fluentd
|
|
||||||
fluentd::config_file: /etc/fluentd/fluent.conf
|
|
||||||
fluentd::config_owner: fluentd
|
|
||||||
fluentd::config_group: fluentd
|
|
||||||
fluentd::config_path: /etc/fluentd/config.d
|
|
||||||
fluentd::plugin_provider: yum
|
|
||||||
fluentd::service_provider: systemd
|
|
||||||
fluentd::repo_install: false
|
|
||||||
tripleo::profile::base::logging::fluentd::fluentd_servers:
|
|
||||||
get_attr: [LoggingConfiguration, LoggingServers]
|
|
||||||
tripleo::profile::base::logging::fluentd::fluentd_default_format:
|
|
||||||
get_attr: [LoggingConfiguration, LoggingDefaultFormat]
|
|
||||||
tripleo::profile::base::logging::fluentd::fluentd_filters:
|
|
||||||
yaql:
|
|
||||||
expression: >
|
|
||||||
$.data.filters.flatten().where($)
|
|
||||||
data:
|
|
||||||
filters:
|
|
||||||
- get_attr: [LoggingConfiguration, LoggingDefaultFilters]
|
|
||||||
- get_attr: [LoggingConfiguration, LoggingExtraFilters]
|
|
||||||
tripleo::profile::base::logging::fluentd::fluentd_pos_file_path:
|
|
||||||
get_attr: [LoggingConfiguration, LoggingPosFilePath]
|
|
||||||
tripleo::profile::base::logging::fluentd::fluentd_use_ssl:
|
|
||||||
get_attr: [LoggingConfiguration, LoggingUsesSSL]
|
|
||||||
tripleo::profile::base::logging::fluentd::fluentd_ssl_certificate:
|
|
||||||
get_attr: [LoggingConfiguration, LoggingSSLCertificate]
|
|
||||||
tripleo::profile::base::logging::fluentd::fluentd_ssl_key:
|
|
||||||
get_attr: [LoggingConfiguration, LoggingSSLKey]
|
|
||||||
tripleo::profile::base::logging::fluentd::fluentd_ssl_key_passphrase:
|
|
||||||
get_attr: [LoggingConfiguration, LoggingSSLKeyPassphrase]
|
|
||||||
tripleo::profile::base::logging::fluentd::fluentd_shared_key:
|
|
||||||
get_attr: [LoggingConfiguration, LoggingSharedKey]
|
|
||||||
step_config: |
|
|
||||||
include ::tripleo::profile::base::logging::fluentd
|
|
||||||
upgrade_tasks: []
|
|
Loading…
x
Reference in New Issue
Block a user