File: cfapi.pp

package info (click to toggle)
puppet-module-murano 23.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 928 kB
  • sloc: ruby: 2,856; python: 38; sh: 10; makefile: 10
file content (90 lines) | stat: -rw-r--r-- 2,590 bytes parent folder | download
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
# == Class: murano::cfapi
#
#  murano service broker package & service
#
# === Parameters
#
# [*manage_service*]
#  (Optional) Whether the service should be managed by Puppet
#  Defaults to true
#
# [*enabled*]
#  (Optional) Should the service be enabled
#  Defaults to true
#
# [*package_ensure*]
#  (Optional) Ensure state for package
#  Defaults to 'present'
#
# [*tenant*]
#  (Optional) Tenant for cloudfoundry api
#  Defaults to 'admin'
#
# [*bind_host*]
#  (Optional) Host on which murano cloudfoundry api should listen
#  Defaults to $facts['os_service_default'].
#
# [*bind_port*]
#  (Optional) Port on which murano cloudfoundry api should listen
#  Defaults to $facts['os_service_default'].
#
# [*auth_url*]
#  (Optional) Public identity endpoint
#  Defaults to 'http://127.0.0.1:5000'.
#
# [*user_domain_name*]
#  (Optional) User Domain name for connecting to Murano CFAPI services in
#  admin context through the OpenStack Identity service.
#  Defaults to $facts['os_service_default'].
#
# [*project_domain_name*]
#  (Optional) Project Domain name for connecting to Murano CFAPI services in
#  admin context through the OpenStack Identity service.
#  Defaults to $facts['os_service_default'].
#
class murano::cfapi(
  $tenant                 = 'admin',
  Boolean $manage_service = true,
  Boolean $enabled        = true,
  $package_ensure         = 'present',
  $bind_host              = $facts['os_service_default'],
  $bind_port              = $facts['os_service_default'],
  $auth_url               = 'http://127.0.0.1:5000',
  $user_domain_name       = $facts['os_service_default'],
  $project_domain_name    = $facts['os_service_default'],
) {

  include murano::deps
  include murano::params
  include murano::policy

  if $manage_service {
    if $enabled {
      $service_ensure = 'running'
    } else {
      $service_ensure = 'stopped'
    }

    service { 'murano-cfapi':
      ensure => $service_ensure,
      name   => $::murano::params::cfapi_service_name,
      enable => $enabled,
      tag    => 'murano-service',
    }
  }

  murano_cfapi_config {
    'cfapi/tenant':               value => $tenant;
    'cfapi/bind_host':            value => $bind_host;
    'cfapi/bind_port':            value => $bind_port;
    'cfapi/auth_url':             value => $auth_url;
    'cfapi/user_domain_name':     value => $user_domain_name;
    'cfapi/project_domain_name':  value => $project_domain_name;
  }

  package { 'murano-cfapi':
    ensure => $package_ensure,
    name   => $::murano::params::cfapi_package_name,
    tag    => ['openstack', 'murano-package'],
  }
}