From bae340f55c4bc5a8c42e1df3c87c820109bb4013 Mon Sep 17 00:00:00 2001 From: Lars Francke Date: Tue, 8 Jul 2025 15:24:21 +0200 Subject: [PATCH 1/3] Change UID & GID to 1000/1000, reverting the previous change from PR #1164 --- CHANGELOG.md | 2 -- conf.py | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fdbc7f2c..b4f3a43be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -91,7 +91,6 @@ All notable changes to this project will be documented in this file. - opa: Enable custom versions ([#1170]). - use custom product versions for Hadoop, HBase, Phoenix, hbase-operator-tools, Druid, Hive and Spark ([#1173]). - hbase: Bump dependencies to the latest patch level for HBase `2.6.1` and `2.6.2` ([#1185]). -- Changed default user & group IDs from 1000/1000 to 782252253/574654813 ([#1164]) ### Fixed @@ -200,7 +199,6 @@ All notable changes to this project will be documented in this file. [#1152]: https://github.com/stackabletech/docker-images/pull/1152 [#1156]: https://github.com/stackabletech/docker-images/pull/1156 [#1163]: https://github.com/stackabletech/docker-images/pull/1163 -[#1164]: https://github.com/stackabletech/docker-images/pull/1164 [#1165]: https://github.com/stackabletech/docker-images/pull/1165 [#1168]: https://github.com/stackabletech/docker-images/pull/1168 [#1169]: https://github.com/stackabletech/docker-images/pull/1169 diff --git a/conf.py b/conf.py index ae57a1c84..2f2b07377 100644 --- a/conf.py +++ b/conf.py @@ -110,7 +110,7 @@ args = { "STACKABLE_USER_NAME": "stackable", - "STACKABLE_USER_UID": "782252253", # This is a random high id to not conflict with any existing user - "STACKABLE_USER_GID": "574654813", # This is a random high id to not conflict with any existing group + "STACKABLE_USER_UID": "1000", + "STACKABLE_USER_GID": "1000", "DELETE_CACHES": "true", } From ae36038e1669f86640f30288dd9feebb7cccd6bb Mon Sep 17 00:00:00 2001 From: Nick Larsen Date: Fri, 11 Jul 2025 11:31:08 +0200 Subject: [PATCH 2/3] chore: Set default GID to 0 --- conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf.py b/conf.py index 092972610..c4404de77 100644 --- a/conf.py +++ b/conf.py @@ -109,6 +109,6 @@ args = { "STACKABLE_USER_NAME": "stackable", "STACKABLE_USER_UID": "1000", - "STACKABLE_USER_GID": "1000", + "STACKABLE_USER_GID": "0", "DELETE_CACHES": "true", } From 3ef776c718faf03319683f2749d8e1ea161c33f3 Mon Sep 17 00:00:00 2001 From: Nick Larsen Date: Fri, 11 Jul 2025 11:32:12 +0200 Subject: [PATCH 3/3] chore: Update changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5823dd612..f0f3a04da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -95,7 +95,7 @@ All notable changes to this project will be documented in this file. - ubi-rust-builder: Bump Rust toolchain to 1.87.0, cargo-auditable to 0.7.0 and protoc to 31.1 ([#1197]). - stackable-base, stackable-devel, ubi-rust-builder: Update `ubi-minimal` base image ([#1197]). - testing-tools: Update `python` 3.12-slim-bullseye base image ([#1197]). -- Change default user & group IDs from 1000/1000 to 1000/0 ([#1193]). +- Change default user & group IDs to 1000/0 ([#1193]). ### Fixed