2a592869b369c4bc53b242f31c9b754c8f402992
[apex-tripleo-heat-templates.git] / docker / services / ceph-ansible / ceph-base.yaml
1 heat_template_version: pike
2
3 description: >
4   Ceph base service. Shared by all Ceph services.
5
6 parameters:
7   ServiceData:
8     default: {}
9     description: Dictionary packing service data
10     type: json
11   ServiceNetMap:
12     default: {}
13     description: Mapping of service_name -> network name. Typically set
14                  via parameter_defaults in the resource registry.  This
15                  mapping overrides those in ServiceNetMapDefaults.
16     type: json
17   DefaultPasswords:
18     default: {}
19     type: json
20   RoleName:
21     default: ''
22     description: Role name on which the service is applied
23     type: string
24   RoleParameters:
25     default: {}
26     description: Parameters specific to the role
27     type: json
28   EndpointMap:
29     default: {}
30     description: Mapping of service endpoint -> protocol. Typically set
31                  via parameter_defaults in the resource registry.
32     type: json
33   StackUpdateType:
34     type: string
35     description: >
36       Type of update, to differentiate between UPGRADE and UPDATE cases
37       when StackAction is UPDATE (both are the same stack action).
38     constraints:
39     - allowed_values: ['', 'UPGRADE']
40     default: ''
41   CephAnsibleWorkflowName:
42     type: string
43     description: Name of the Mistral workflow to execute
44     default: tripleo.storage.v1.ceph-install
45   CephAnsiblePlaybook:
46     type: string
47     description: Path to the ceph-ansible playbook to execute
48     default: /usr/share/ceph-ansible/site-docker.yml.sample
49   CephAnsibleUpgradePlaybook:
50     type: string
51     description: Path to the ceph-ansible playbook to execute on upgrade
52     default: /usr/share/ceph-ansible/infrastructure-playbooks/switch-from-non-containerized-to-containerized-ceph-daemons.yml
53   CephAnsibleExtraConfig:
54     type: json
55     description: Extra vars for the ceph-ansible playbook
56     default: {}
57   CephAnsibleSkipTags:
58     type: string
59     description: List of ceph-ansible tags to skip
60     default: 'package-install,with_pkg'
61   CephClusterFSID:
62     type: string
63     description: The Ceph cluster FSID. Must be a UUID.
64   CephPoolDefaultPgNum:
65     description: default pg_num to use for the RBD pools
66     type: number
67     default: 32
68   CephPools:
69     description: >
70       It can be used to override settings for one of the predefined pools, or to create
71       additional ones. Example:
72       {
73         "volumes": {
74           "size": 5,
75           "pg_num": 128,
76           "pgp_num": 128
77          }
78       }
79     default: {}
80     type: json
81   CinderRbdPoolName:
82     default: volumes
83     type: string
84   CinderBackupRbdPoolName:
85     default: backups
86     type: string
87   GlanceRbdPoolName:
88     default: images
89     type: string
90   GnocchiRbdPoolName:
91     default: metrics
92     type: string
93   NovaRbdPoolName:
94     default: vms
95     type: string
96   CephClientKey:
97     description: The Ceph client key. Can be created with ceph-authtool --gen-print-key.
98     type: string
99     hidden: true
100   CephClientUserName:
101     default: openstack
102     type: string
103   CephPoolDefaultSize:
104     description: default minimum replication for RBD copies
105     type: number
106     default: 3
107   ManilaCephFSNativeCephFSAuthId:
108     default: manila
109     type: string
110   CephManilaClientKey:
111     default: ''
112     description: The Ceph client key. Can be created with ceph-authtool --gen-print-key.
113     type: string
114     hidden: true
115   CephIPv6:
116     default: False
117     type: boolean
118   DockerCephDaemonImage:
119     description: image
120     type: string
121
122 conditions:
123   custom_registry_host:
124     yaql:
125       data: {get_param: DockerCephDaemonImage}
126       expression: $.data.split('/')[0].matches('(\.|:)')
127   perform_upgrade:
128     equals: [{get_param: StackUpdateType}, 'UPGRADE']
129
130 resources:
131   DockerImageUrlParts:
132     type: OS::Heat::Value
133     properties:
134       type: json
135       value:
136         host:
137           if:
138           - custom_registry_host
139           - yaql:
140               expression: let(location => $.data.rightSplit(':', 1)[0]) -> regex('(?:https?://)?(.*?)/(.*)').split($location)[1]
141               data: {get_param: DockerCephDaemonImage}
142           - docker.io
143         image:
144           if:
145           - custom_registry_host
146           - yaql:
147               expression: let(location => $.data.rightSplit(':', 1)[0]) -> regex('(?:https?://)?(.*?)/(.*)').split($location)[2]
148               data: {get_param: DockerCephDaemonImage}
149           - yaql:
150               expression: $.data.rightSplit(':', 1)[0]
151               data: {get_param: DockerCephDaemonImage}
152         image_tag:
153           yaql:
154             expression: $.data.rightSplit(':', 1)[1]
155             data: {get_param: DockerCephDaemonImage}
156
157 outputs:
158   role_data:
159     description: Role data for the Ceph base service.
160     value:
161       service_name: ceph_base
162       upgrade_tasks: []
163       step_config: ''
164       puppet_config:
165         config_image: ''
166         config_volume: ''
167         step_config: ''
168       docker_config: {}
169       service_workflow_tasks:
170         step2:
171           - name: ceph_base_ansible_workflow
172             workflow: { get_param: CephAnsibleWorkflowName }
173             input:
174               ansible_skip_tags: {get_param: CephAnsibleSkipTags}
175               ceph_ansible_extra_vars: {get_param: CephAnsibleExtraConfig}
176               ceph_ansible_playbook:
177                 if:
178                   - perform_upgrade
179                   - {get_param: CephAnsibleUpgradePlaybook}
180                   - {get_param: CephAnsiblePlaybook}
181       config_settings:
182         ceph_common_ansible_vars:
183           ireallymeanit: 'yes'
184           fsid: { get_param: CephClusterFSID }
185           docker: true
186           ceph_release: jewel
187           ceph_docker_registry: {get_attr: [DockerImageUrlParts, value, host]}
188           ceph_docker_image: {get_attr: [DockerImageUrlParts, value, image]}
189           ceph_docker_image_tag: {get_attr: [DockerImageUrlParts, value, image_tag]}
190           containerized_deployment: true
191           public_network: {get_param: [ServiceData, net_cidr_map, {get_param: [ServiceNetMap, CephMonNetwork]}]}
192           monitor_address_block: {get_param: [ServiceData, net_cidr_map, {get_param: [ServiceNetMap, CephMonNetwork]}]}
193           cluster_network: {get_param: [ServiceData, net_cidr_map, {get_param: [ServiceNetMap, CephClusterNetwork]}]}
194           user_config: true
195           ceph_stable: true
196           ceph_origin: distro
197           openstack_config: true
198           openstack_pools:
199             list_concat:
200               - repeat:
201                   template:
202                     name: <%pool%>
203                     pg_num: {get_param: CephPoolDefaultPgNum}
204                     rule_name: ""
205                   for_each:
206                     <%pool%>:
207                       - {get_param: CinderRbdPoolName}
208                       - {get_param: CinderBackupRbdPoolName}
209                       - {get_param: NovaRbdPoolName}
210                       - {get_param: GlanceRbdPoolName}
211                       - {get_param: GnocchiRbdPoolName}
212               - repeat:
213                   template:
214                     name: <%pool%>
215                     pg_num: {get_param: CephPoolDefaultPgNum}
216                     rule_name: ""
217                   for_each:
218                     <%pool%>: {get_param: CephPools}
219           openstack_keys: &openstack_keys
220           - name:
221               list_join:
222               - '.'
223               - - client
224                 - {get_param: CephClientUserName}
225             key: {get_param: CephClientKey}
226             mon_cap: "allow r"
227             osd_cap:
228               str_replace:
229                template: "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"
230                params:
231                  NOVA_POOL: {get_param: NovaRbdPoolName}
232                  CINDER_POOL: {get_param: CinderRbdPoolName}
233                  CINDERBACKUP_POOL: {get_param: CinderBackupRbdPoolName}
234                  GLANCE_POOL: {get_param: GlanceRbdPoolName}
235                  GNOCCHI_POOL: {get_param: GnocchiRbdPoolName}
236             mode: "0644"
237           - name:
238               list_join:
239               - '.'
240               - - client
241                 - {get_param: ManilaCephFSNativeCephFSAuthId}
242             key: {get_param: CephManilaClientKey}
243             mon_cap: 'allow r, allow command \\\"auth del\\\", allow command \\\"auth caps\\\", allow command \\\"auth get\\\", allow command \\\"auth get-or-create\\\"'
244             mds_cap: "allow *"
245             osd_cap: "allow rw"
246             mode: "0644"
247           keys: *openstack_keys
248           pools: []
249           ceph_conf_overrides:
250             global:
251               osd_pool_default_size: {get_param: CephPoolDefaultSize}
252               osd_pool_default_pg_num: {get_param: CephPoolDefaultPgNum}
253           ntp_service_enabled: false
254           generate_fsid: false
255           ip_version:
256             if:
257             - {get_param: CephIPv6}
258             - ipv6
259             - ipv4