summaryrefslogtreecommitdiffstats
path: root/manifests/profile/base/haproxy.pp
blob: f16ec1b4caae6560ce78165bdb48612c56b96126 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# Copyright 2016 Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# == Class: tripleo::profile::base::haproxy
#
# Loadbalancer profile for tripleo
#
# === Parameters
#
# [*certificates_specs*]
#   (Optional) The specifications to give to certmonger for the certificate(s)
#   it will create.
#   Example with hiera:
#     tripleo::profile::base::haproxy::certificates_specs:
#       undercloud-haproxy-public-cert:
#         service_pem: <haproxy ready pem file>
#         service_certificate: <service certificate path>
#         service_key: <service key path>
#         hostname: <undercloud fqdn>
#         postsave_cmd: <command to update certificate on resubmit>
#         principal: "haproxy/<undercloud fqdn>"
#   Defaults to {}.
#
# [*certmonger_ca*]
#   (Optional) The CA that certmonger will use to generate the certificates.
#   Defaults to hiera('certmonger_ca', 'local').
#
# [*enable_load_balancer*]
#   (Optional) Whether or not loadbalancer is enabled.
#   Defaults to hiera('enable_load_balancer', true).
#
# [*generate_service_certificates*]
#   (Optional) Whether or not certmonger will generate certificates for
#   HAProxy. This could be as many as specified by the $certificates_specs
#   variable.
#   Note that this doesn't configure the certificates in haproxy, it merely
#   creates the certificates.
#   Defaults to hiera('generate_service_certificate', false).
#
# [*step*]
#   (Optional) The current step in deployment. See tripleo-heat-templates
#   for more details.
#   Defaults to hiera('step')
#
class tripleo::profile::base::haproxy (
  $certificates_specs            = {},
  $certmonger_ca                 = hiera('certmonger_ca', 'local'),
  $enable_load_balancer          = hiera('enable_load_balancer', true),
  $generate_service_certificates = hiera('generate_service_certificates', false),
  $step                          = hiera('step'),
) {
  if $step >= 1 {
    if $enable_load_balancer {
      if str2bool($generate_service_certificates) {
        include ::certmonger
        # This is only needed for certmonger's local CA. For any other CA this
        # operation (trusting the CA) should be done by the deployer.
        if $certmonger_ca == 'local' {
          class { '::tripleo::certmonger::ca::local':
            notify => Class['::tripleo::haproxy']
          }
        }

        Certmonger_certificate {
          ca          => $certmonger_ca,
          ensure      => 'present',
          wait        => true,
          require     => Class['::certmonger'],
        }
        create_resources('::tripleo::certmonger::haproxy', $certificates_specs)
        # The haproxy fronends (or listen resources) depend on the certificate
        # existing and need to be refreshed if it changed.
        Tripleo::Certmonger::Haproxy<||> ~> Haproxy::Listen<||>
      }

      class {'::tripleo::haproxy':
        internal_certificates_specs => $certificates_specs,
      }

      unless hiera('tripleo::haproxy::haproxy_service_manage', true) {
        # Reload HAProxy configuration if the haproxy class has refreshed or any
        # HAProxy frontend endpoint has changed.
        exec { 'haproxy-reload':
          command     => 'systemctl reload haproxy',
          path        => ['/usr/bin', '/usr/sbin'],
          refreshonly => true,
          onlyif      => 'systemctl is-active haproxy | grep -q active',
          subscribe   => Class['::haproxy']
        }
        Haproxy::Listen<||> ~> Exec['haproxy-reload']
        Haproxy::Balancermember<||> ~> Exec['haproxy-reload']
      }
    }
  }

}
>- "rabbitmq-server:amqp" - - "openstack-dashboard:identity-service" - "keystone:identity-service" - - "neutron-api:shared-db" - "mysql:shared-db" - - "neutron-api:amqp" - "rabbitmq-server:amqp" - - "nova-cloud-controller:neutron-api" - "neutron-api:neutron-api" - - "neutron-api:identity-service" - "keystone:identity-service" - - "neutron-gateway:amqp" - "rabbitmq-server:amqp" - - "neutron-gateway:neutron-plugin-api" - "neutron-api:neutron-plugin-api" - - "nova-cloud-controller:quantum-network-service" - "neutron-gateway:quantum-network-service" - - "ceilometer:amqp" - "rabbitmq-server:amqp" - - "ceilometer-agent:ceilometer-service" - "ceilometer:ceilometer-service" - - "ceilometer:identity-service" - "keystone:identity-service" - - "ceilometer:identity-notifications" - "keystone:identity-notifications" - - "ceilometer-agent:nova-ceilometer" - "nova-compute:nova-ceilometer" - - "ceilometer:shared-db" - "mongodb:database" - - "heat:shared-db" - "mysql:shared-db" - - "heat:identity-service" - "keystone:identity-service" - - "heat:amqp" - "rabbitmq-server:amqp" - - "cinder:image-service" - "glance:image-service" - - "cinder:amqp" - "rabbitmq-server:amqp" - - "cinder:identity-service" - "keystone:identity-service" - - "cinder:cinder-volume-service" - "nova-cloud-controller:cinder-volume-service" - - "cinder-ceph:storage-backend" - "cinder:storage-backend" - - "ceph:client" - "nova-compute:ceph" - - "cinder:shared-db" - "mysql:shared-db" - - "ceph:client" - "cinder-ceph:ceph" - - "ceph:client" - "glance:ceph" - - "ceph-osd:mon" - "ceph:osd" - - "ceph-radosgw:mon" - "ceph:radosgw" - - "ceph-radosgw:identity-service" - "keystone:identity-service" #- - nova-compute:lxd #- lxd:lxd - - congress:shared-db - mysql:shared-db - - congress:identity-service - keystone:identity-service - - congress:amqp - rabbitmq-server:amqp services: mysql: charm: "local:trusty/percona-cluster" options: dataset-size: 2G max-connections: 10000 to: - "lxc:nodes=0" ceilometer: charm: "local:trusty/ceilometer" to: - "lxc:nodes=1" ceilometer-agent: charm: "local:trusty/ceilometer-agent" mongodb: charm: "local:trusty/mongodb" to: - "lxc:nodes=0" heat: charm: "local:trusty/heat" to: - "lxc:nodes=1" ceph: charm: "local:trusty/ceph" num_units: 2 options: fsid: 5a791d94-980b-11e4-b6f6-3c970e8b1cf7 monitor-secret: AQAi5a9UeJXUExAA+By9u+GPhl8/XiUQ4nwI3A== monitor-count: 2 # osd-reformat: 'no' # ceph-cluster-network: 192.168.0.0/24 # ceph-public-network: 192.168.0.0/24 to: - "lxc:nodes=0" - "lxc:nodes=1" ceph-osd: charm: "local:trusty/ceph-osd" num_units: 2 options: osd-devices: /srv osd-reformat: 'yes' to: - "nodes=0" - "nodes=1" ceph-radosgw: charm: "local:trusty/ceph-radosgw" options: use-embedded-webserver: true operator-roles: "Member,admin" to: - "lxc:nodes=0" cinder: charm: "local:trusty/cinder" options: block-device: None glance-api-version: 2 # openstack-origin-git: include-file://cinder-master.yaml to: - "lxc:nodes=1" cinder-ceph: charm: "local:trusty/cinder-ceph" rabbitmq-server: charm: "local:trusty/rabbitmq-server" to: - "lxc:nodes=0" keystone: charm: "local:trusty/keystone" options: openstack-origin-git: include-file://keystone-master.yaml admin-password: openstack admin-token: admin to: - "lxc:nodes=1" openstack-dashboard: charm: "local:trusty/openstack-dashboard" options: openstack-origin-git: include-file://horizon-master.yaml secret: admin to: - "lxc:nodes=0" nova-compute: charm: local:trusty/nova-compute options: openstack-origin-git: include-file://nova-master.yaml enable-live-migration: true enable-resize: true manage-neutron-plugin-legacy-mode: false migration-auth-type: ssh #hugepages: "50%" #virt-type: lxd to: - "nodes=1" nova-cloud-controller: charm: "local:trusty/nova-cloud-controller" options: openstack-origin-git: include-file://nova-master.yaml console-access-protocol: novnc network-manager: Neutron to: - "lxc:nodes=1" neutron-api: charm: local:charms/trusty/neutron-api options: neutron-security-groups: True overlay-network-type: vxlan #flat-network-providers: "*" to: - "lxc:nodes=0" neutron-gateway: charm: "local:trusty/neutron-gateway" options: openstack-origin-git: include-file://neutron-master.yaml instance-mtu: 1400 #ext-port: "eth1" to: - "nodes=0" glance: charm: "local:trusty/glance" options: openstack-origin-git: include-file://glance-master.yaml to: - "lxc:nodes=1" opnfv-promise: charm: local:trusty/promise to: - "lxc:nodes=0" neutron-openvswitch: charm: "local:trusty/neutron-openvswitch" options: openstack-origin-git: include-file://neutron-master.yaml #enable-dpdk: true #data-port: "" #default-socket-memory: 1024 #defualt-socket-cores: 1 #dpdk-driver: uio_pci_generic congress: charm: local:trusty/congress options: #source-branch: stable/mitaka to: - "lxc:nodes=1"