Merge "Fixed NoneType issue when monitoring-environment.yaml"
[apex-tripleo-heat-templates.git] / puppet / services / ceph-base.yaml
1 heat_template_version: 2016-04-08
2
3 description: >
4   Ceph base service. Shared by all Ceph services.
5
6 parameters:
7   # NOTE(gfidente): needs a default to cope with external Ceph deployments were we don't pass (and need) an Admin key
8   CephAdminKey:
9     default: ''
10     description: The Ceph admin client key. Can be created with ceph-authtool --gen-print-key.
11     type: string
12     hidden: true
13   CephClientKey:
14     description: The Ceph client key. Can be created with ceph-authtool --gen-print-key. Currently only used for external Ceph deployments to create the openstack user keyring.
15     type: string
16     hidden: true
17   CephClientUserName:
18     default: openstack
19     type: string
20   CephClusterFSID:
21     type: string
22     description: The Ceph cluster FSID. Must be a UUID.
23   CinderRbdPoolName:
24     default: volumes
25     type: string
26   CinderBackupRbdPoolName:
27     default: backups
28     type: string
29   GlanceRbdPoolName:
30     default: images
31     type: string
32   GnocchiRbdPoolName:
33     default: metrics
34     type: string
35   NovaRbdPoolName:
36     default: vms
37     type: string
38   ServiceNetMap:
39     default: {}
40     description: Mapping of service_name -> network name. Typically set
41                  via parameter_defaults in the resource registry.  This
42                  mapping overrides those in ServiceNetMapDefaults.
43     type: json
44   DefaultPasswords:
45     default: {}
46     type: json
47   EndpointMap:
48     default: {}
49     description: Mapping of service endpoint -> protocol. Typically set
50                  via parameter_defaults in the resource registry.
51     type: json
52   # DEPRECATED options for compatibility with overcloud.yaml
53   # This should be removed and manipulation of the ControllerServices list
54   # used instead, but we need client support for that first
55   ControllerEnableCephStorage:
56     default: false
57     description: Whether to deploy Ceph Storage (OSD) on the Controller
58     type: boolean
59
60 parameter_groups:
61 - label: deprecated
62   description: Do not use deprecated params, they will be removed.
63   parameters:
64   - ControllerEnableCephStorage
65
66 outputs:
67   role_data:
68     description: Role data for the Ceph base service.
69     value:
70       service_name: ceph_base
71       config_settings:
72         tripleo::profile::base::ceph::enable_ceph_storage: {get_param: ControllerEnableCephStorage}
73         ceph::profile::params::osd_pool_default_min_size: 1
74         ceph::profile::params::osds: {/srv/data: {}}
75         ceph::profile::params::manage_repo: false
76         ceph::profile::params::authentication_type: cephx
77         ceph::profile::params::fsid: {get_param: CephClusterFSID}
78         # NOTE: bind IP is found in Heat replacing the network name with the local node IP
79         # for the given network; replacement examples (eg. for internal_api):
80         # internal_api -> IP
81         # internal_api_uri -> [IP]
82         # internal_api_subnet - > IP/CIDR
83         ceph::profile::params::cluster_network:
84           str_replace:
85             template: "NETWORK_subnet"
86             params:
87               NETWORK: {get_param: [ServiceNetMap, CephClusterNetwork]}
88         ceph::profile::params::public_network:
89           str_replace:
90             template: "NETWORK_subnet"
91             params:
92               NETWORK: {get_param: [ServiceNetMap, CephMonNetwork]}
93         ceph::profile::params::public_addr: {get_param: [ServiceNetMap, CephMonNetwork]}
94         ceph::profile::params::client_keys:
95           str_replace:
96             template: "{
97               client.admin: {
98                 secret: 'ADMIN_KEY',
99                 mode: '0600',
100                 cap_mon: 'allow *',
101                 cap_osd: 'allow *',
102                 cap_mds: 'allow *'
103               },
104               client.bootstrap-osd: {
105                 secret: 'ADMIN_KEY',
106                 keyring_path: '/var/lib/ceph/bootstrap-osd/ceph.keyring',
107                 cap_mon: 'allow profile bootstrap-osd'
108               },
109               client.CLIENT_USER: {
110                 secret: 'CLIENT_KEY',
111                 mode: '0644',
112                 cap_mon: 'allow r',
113                 cap_osd: 'allow class-read object_prefix rbd_children, allow rwx pool=CINDER_POOL, allow rwx pool=CINDERBACKUP_POOL, allow rwx pool=NOVA_POOL, allow rwx pool=GLANCE_POOL, allow rwx pool=GNOCCHI_POOL'
114               }
115             }"
116             params:
117               CLIENT_USER: {get_param: CephClientUserName}
118               CLIENT_KEY: {get_param: CephClientKey}
119               ADMIN_KEY: {get_param: CephAdminKey}
120               NOVA_POOL: {get_param: NovaRbdPoolName}
121               CINDER_POOL: {get_param: CinderRbdPoolName}
122               CINDERBACKUP_POOL: {get_param: CinderBackupRbdPoolName}
123               GLANCE_POOL: {get_param: GlanceRbdPoolName}
124               GNOCCHI_POOL: {get_param: GnocchiRbdPoolName}