aboutsummaryrefslogtreecommitdiffstats
path: root/puppet/services/keepalived.yaml
blob: 44e6b248f6a2bf9fa08b57b938d17e8a419d1add (plain)
1
2

@media only all and (prefers-color-scheme: dark) {
.highlight .hll { background-color: #49483e }
.highlight .c { color: #75715e } /* Comment */
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
.highlight .k { color: #66d9ef } /* Keyword */
.highlight .l { color: #ae81ff } /* Literal */
.highlight .n { color: #f8f8f2 } /* Name */
.highlight .o { color: #f92672 } /* Operator */
.highlight .p { color: #f8f8f2 } /* Punctuation */
.highlight .ch { color: #75715e } /* Comment.Hashbang */
.highlight .cm { color: #75715e } /* Comment.Multiline */
.highlight .cp { color: #75715e } /* Comment.Preproc */
.highlight .cpf { color: #75715e } /* Comment.PreprocFile */
.highlight .c1 { color: #75715e } /* Comment.Single */
.highlight .cs { color: #75715e } /* Comment.Special */
.highlight .gd { color: #f92672 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gi { color: #a6e22e } /* Generic.Inserted */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #75715e } /* Generic.Subheading */
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
.highlight .kn { color: #f92672 } /* Keyword.Namespace */
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
.highlight .kr { color: #66d9ef } /* Keyword.Reserved */
.highlight .kt { color: #66d9ef } /* Keyword.Type */
.highlight .ld { color: #e6db74 } /* Literal.Date */
.highlight .m { color: #ae81ff } /* Literal.Number */
.highlight .s { color: #e6db74 } /* Literal.String */
.highlight .na { color: #a6e22e } /* Name.Attribute */
.highlight .nb { color: #f8f8f2 } /* Name.Builtin */
.highlight .nc { color: #a6e22e } /* Name.Class */
.highlight .no { color: #66d9ef } /* Name.Constant */
.highlight .nd { color: #a6e22e } /* Name.Decorator */
.highlight .ni { color: #f8f8f2 } /* Name.Entity */
.highlight .ne { color: #a6e22e } /* Name.Exception */
.highlight .nf { color: #a6e22e } /* Name.Function */
.highlight .nl { color: #f8f8f2 } /* Name.Label */
.highlight .nn { color: #f8f8f2 } /* Name.Namespace */
.highlight .nx { color: #a6e22e } /* Name.Other */
.highlight .py { color: #f8f8f2 } /* Name.Property */
.highlight .nt { color: #f92672 } /* Name.Tag */
.highlight .nv { color: #f8f8f2 } /* Name.Variable */
.highlight .ow { color: #f92672 } /* Operator.Word */
.highlight .w { color: #f8f8f2 } /* Text.Whitespace */
.highlight .mb { color: #ae81ff } /* Literal.Numbe
heat_template_version: pike

description: >
  Keepalived service configured with Puppet

parameters:
  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
          tags: step1
          service: name=keepalived state=stopped
        - name: Start keepalived service
          tags: step4 # Needed at step 4 for mysql
          service: name=keepalived state=started