File tree 3 files changed +10
-0
lines changed
3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ All notable changes to this project will be documented in this file.
23
23
- kafka: Add cyrus-sasl-gssapi package for kerberos ([ #874 ] ).
24
24
- spark: Add HBase connector ([ #878 ] , [ #882 ] ).
25
25
- hbase: hbase-entrypoint.sh script to start and gracefully stop services ([ #898 ] ).
26
+ - tools: install yq command line tool for YAML manipulation ([ #912 ] ).
26
27
27
28
### Changed
28
29
@@ -95,6 +96,7 @@ All notable changes to this project will be documented in this file.
95
96
[ #903 ] : https://github.com/stackabletech/docker-images/pull/903
96
97
[ #907 ] : https://github.com/stackabletech/docker-images/pull/907
97
98
[ #910 ] : https://github.com/stackabletech/docker-images/pull/910
99
+ [ #912 ] : https://github.com/stackabletech/docker-images/pull/912
98
100
99
101
## [ 24.7.0] - 2024-07-24
100
102
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ ARG PRODUCT
7
7
ARG KUBECTL_VERSION
8
8
ARG RELEASE
9
9
ARG JQ_VERSION
10
+ ARG YQ_VERSION
10
11
ARG TARGETARCH
11
12
ARG STACKABLE_USER_UID
12
13
@@ -44,6 +45,12 @@ curl "https://github.com/stedolan/jq/releases/download/jq-${JQ_VERSION}/jq-linux
44
45
-o /stackable/bin/jq
45
46
chmod +x /stackable/bin/jq
46
47
48
+ # Needed to to patch manifests in OLM environments with tolerations
49
+ # and environment variables.
50
+ curl "https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/yq_linux_${TARGETARCH}" \
51
+ -o /stackable/bin/yq
52
+ chmod +x /stackable/bin/yq
53
+
47
54
# All files and folders owned by root group to support running as arbitrary users.
48
55
# This is best practice as all container users will belong to the root group (0).
49
56
chown -R ${STACKABLE_USER_UID}:0 /stackable
Original file line number Diff line number Diff line change 4
4
"kubectl_version" : "1.31.1" ,
5
5
"jq_version" : "1.7.1" ,
6
6
"stackable-base" : "1.0.0" ,
7
+ "yq_version" : "4.44.3" ,
7
8
},
8
9
]
You can’t perform that action at this time.
0 commit comments