Skip to content

Change UID & GID to 1000/0 #1193

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ 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])
- 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 to 1000/0 ([#1193]).

### Fixed

Expand Down Expand Up @@ -205,7 +205,6 @@ All notable changes to this project will be documented in this file.
[#1156]: https://github.com/stackabletech/docker-images/pull/1156
[#1159]: https://github.com/stackabletech/docker-images/pull/1159
[#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
Expand All @@ -220,6 +219,7 @@ All notable changes to this project will be documented in this file.
[#1185]: https://github.com/stackabletech/docker-images/pull/1185
[#1188]: https://github.com/stackabletech/docker-images/pull/1188
[#1189]: https://github.com/stackabletech/docker-images/pull/1189
[#1193]: https://github.com/stackabletech/docker-images/pull/1193
[#1197]: https://github.com/stackabletech/docker-images/pull/1197

## [25.3.0] - 2025-03-21
Expand Down
4 changes: 2 additions & 2 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,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": "0",
"DELETE_CACHES": "true",
}