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
|
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
: Copyright (c) 2018 Mirantis Inc., Enea AB and others.
:
: All rights reserved. This program and the accompanying materials
: are made available under the terms of the Apache License, Version 2.0
: which accompanies this distribution, and is available at
: http://www.apache.org/licenses/LICENSE-2.0
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
From: Michael Polenchuk <mpolenchuk@mirantis.com>
Date: Wed, 28 Nov 2018 13:06:33 +0400
Subject: [PATCH] Support rocky version
Change-Id: I4116f8cf359f7a3187411577cfcafda115c7be59
Related-Prod: PROD-23724
diff --git a/heat/files/queens/heat.conf.Debian b/heat/files/queens/heat.conf.Debian
index f5b4b13..6b90880 100644
--- a/heat/files/queens/heat.conf.Debian
+++ b/heat/files/queens/heat.conf.Debian
@@ -230,12 +230,12 @@ region_name_for_services = {{ server.region }}
# Keystone domain name which contains heat template-defined users. If
# `stack_user_domain_id` option is set, this option is ignored. (string value)
-stack_user_domain_name = {{ server.stack_domain_admin.get('stack_user_domain_name', 'heat_user_domain') }}
+stack_user_domain_name = {{ server.stack_domain_admin.get('domain', 'heat_user_domain') }}
# Keystone username, a user with roles sufficient to manage users and projects
# in the stack_user_domain. (string value)
#stack_domain_admin = <None>
-stack_domain_admin = heat_domain_admin
+stack_domain_admin = {{ server.stack_domain_admin.get('name', 'heat_domain_admin') }}
# Keystone password for stack_domain_admin user. (string value)
#stack_domain_admin_password = <None>
@@ -257,7 +257,7 @@ stack_domain_admin_password = {{ server.stack_domain_admin.password }}
{%- endif %}
# Maximum raw byte size of any template. (integer value)
-max_template_size = {{ server.get('max_template_size', 5440000) }}
+max_template_size = {{ server.get('max_template_size', 5440000) }}
# Maximum depth allowed when using nested stacks. (integer value)
#max_nested_stack_depth = 5
diff --git a/heat/server.sls b/heat/server.sls
index 02e73b4..037c28a 100644
--- a/heat/server.sls
+++ b/heat/server.sls
@@ -156,11 +156,16 @@ keystonercv3:
{%- endif %}
{%- if not grains.get('virtual_subtype', None) == "Docker" %}
-{%- if server.version != 'juno' %}
+{%- if server.version not in ['juno', 'rocky'] %}
heat_keystone_setup:
cmd.run:
- - name: 'source /root/keystonercv3; heat-keystone-setup-domain --stack-user-domain-name heat_user_domain --stack-domain-admin heat_domain_admin --stack-domain-admin-password {{ server.stack_domain_admin.password }}'
+ - name: >-
+ source /root/keystonercv3;
+ heat-keystone-setup-domain
+ --stack-user-domain-name {{ server.stack_domain_admin.domain|default('heat_user_domain') }}
+ --stack-domain-admin {{ server.stack_domain_admin.name|default('heat_domain_admin') }}
+ --stack-domain-admin-password {{ server.stack_domain_admin.password }}
- shell: /bin/bash
- require:
- file: /etc/heat/heat.conf
|