diff --git a/kolla/common/config.py b/kolla/common/config.py index f0b8f2df4f..521d2da9ba 100755 --- a/kolla/common/config.py +++ b/kolla/common/config.py @@ -939,6 +939,11 @@ USERS = { 'masakari-user': { 'uid': 42485, 'gid': 42485, + }, + 'hacluster-user': { + 'uid': 42486, + 'gid': 42486, + 'group': 'haclient', } } diff --git a/releasenotes/notes/bug-1934753-98ec4951a0f7373b.yaml b/releasenotes/notes/bug-1934753-98ec4951a0f7373b.yaml new file mode 100644 index 0000000000..44f3afa52a --- /dev/null +++ b/releasenotes/notes/bug-1934753-98ec4951a0f7373b.yaml @@ -0,0 +1,6 @@ +--- +fixes: + - | + Fixes user uid inconsistency beetween base and openstack-base + debian binary images. + `LP#1934753 `__