Skip to content
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ All notable changes to this project will be documented in this file.
- kafka: Add cyrus-sasl-gssapi package for kerberos ([#874]).
- spark: Add HBase connector ([#878], [#882]).
- hbase: hbase-entrypoint.sh script to start and gracefully stop services ([#898]).
- tools: install yq command line tool for YAML manipulation ([#912]).

### Changed

Expand Down Expand Up @@ -95,6 +96,7 @@ All notable changes to this project will be documented in this file.
[#903]: https://github.com/stackabletech/docker-images/pull/903
[#907]: https://github.com/stackabletech/docker-images/pull/907
[#910]: https://github.com/stackabletech/docker-images/pull/910
[#912]: https://github.com/stackabletech/docker-images/pull/912

## [24.7.0] - 2024-07-24

Expand Down
7 changes: 7 additions & 0 deletions tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ ARG PRODUCT
ARG KUBECTL_VERSION
ARG RELEASE
ARG JQ_VERSION
ARG YQ_VERSION
ARG TARGETARCH
ARG STACKABLE_USER_UID

Expand Down Expand Up @@ -44,6 +45,12 @@ curl "https://github.com/stedolan/jq/releases/download/jq-${JQ_VERSION}/jq-linux
-o /stackable/bin/jq
chmod +x /stackable/bin/jq

# Needed to to patch manifests in OLM environments with tolerations
# and environment variables.
curl "https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/yq_linux_${TARGETARCH}" \
-o /stackable/bin/yq
chmod +x /stackable/bin/yq

# All files and folders owned by root group to support running as arbitrary users.
# This is best practice as all container users will belong to the root group (0).
chown -R ${STACKABLE_USER_UID}:0 /stackable
Expand Down
1 change: 1 addition & 0 deletions tools/versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
"kubectl_version": "1.31.1",
"jq_version": "1.7.1",
"stackable-base": "1.0.0",
"yq_version": "4.44.3",
},
]