From 9c0ba331c579406ab8283918a82ef1f12dc36013 Mon Sep 17 00:00:00 2001 From: Lars Francke Date: Tue, 5 Nov 2024 23:33:38 +0100 Subject: [PATCH 1/3] Change default user id and gid --- CHANGELOG.md | 2 ++ conf.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f69e9e3e9..2ed1f1624 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -49,6 +49,7 @@ All notable changes to this project will be documented in this file. - yq: Bump products to use `4.45.2` ([#1090]). - cyclonedx-bom: Bump airflow and superset to use `6.0.0` ([#1090]). - vector: Bump to `0.46.1` ([#1098]). +- Changed default user & group IDs from 1000/1000 to 782252253/574654813 ([#916]) ### Fixed @@ -75,6 +76,7 @@ All notable changes to this project will be documented in this file. - opa: Remove `0.67.1` ([#1103]). - opa: Remove legacy bundle-builder from container build ([#1103]). +[#916]: https://github.com/stackabletech/docker-images/pull/916 [#1025]: https://github.com/stackabletech/docker-images/pull/1025 [#1027]: https://github.com/stackabletech/docker-images/pull/1027 [#1028]: https://github.com/stackabletech/docker-images/pull/1028 diff --git a/conf.py b/conf.py index c3a016e16..e3e05c40c 100644 --- a/conf.py +++ b/conf.py @@ -98,7 +98,7 @@ args = { "STACKABLE_USER_NAME": "stackable", - "STACKABLE_USER_UID": "1000", - "STACKABLE_USER_GID": "1000", + "STACKABLE_USER_UID": "782252253", + "STACKABLE_USER_GID": "574654813", "DELETE_CACHES": "true", } From a673bad82e7307591cb987c9132753037fcf2b17 Mon Sep 17 00:00:00 2001 From: Lars Francke Date: Thu, 8 May 2025 17:10:02 +0200 Subject: [PATCH 2/3] Add comment --- conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf.py b/conf.py index e3e05c40c..6b1e0fb27 100644 --- a/conf.py +++ b/conf.py @@ -98,7 +98,7 @@ args = { "STACKABLE_USER_NAME": "stackable", - "STACKABLE_USER_UID": "782252253", - "STACKABLE_USER_GID": "574654813", + "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 "DELETE_CACHES": "true", } From 826434c442d8d4bdceca16b06de345cda5da3872 Mon Sep 17 00:00:00 2001 From: Lars Francke Date: Thu, 8 May 2025 17:37:59 +0200 Subject: [PATCH 3/3] Fix pre-commit stuff --- conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf.py b/conf.py index 6b1e0fb27..918e781f1 100644 --- a/conf.py +++ b/conf.py @@ -98,7 +98,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": "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 "DELETE_CACHES": "true", }