File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
tests/templates/kuttl/smoke Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ All notable changes to this project will be documented in this file.
7
7
### Fixed
8
8
9
9
- Revert changing the getting started script to use the listener class ` cluster-internal ` ([ #492 ] ) ([ #493 ] ).
10
+ - Fix HDFS pods crashing on launch when any port names contain dashes ([ #517 ] ).
11
+
12
+ [ #493 ] : https://github.com/stackabletech/hdfs-operator/pull/493
13
+ [ #517 ] : https://github.com/stackabletech/hdfs-operator/pull/517
10
14
11
15
## [ 24.3.0] - 2024-03-20
12
16
@@ -49,7 +53,6 @@ All notable changes to this project will be documented in this file.
49
53
[ #475 ] : https://github.com/stackabletech/hdfs-operator/pull/475
50
54
[ #491 ] : https://github.com/stackabletech/hdfs-operator/pull/491
51
55
[ #492 ] : https://github.com/stackabletech/hdfs-operator/pull/492
52
- [ #493 ] : https://github.com/stackabletech/hdfs-operator/pull/493
53
56
[ #495 ] : https://github.com/stackabletech/hdfs-operator/pull/495
54
57
[ #499 ] : https://github.com/stackabletech/hdfs-operator/pull/499
55
58
Original file line number Diff line number Diff line change @@ -525,7 +525,7 @@ prepare_signal_handlers
525
525
if [[ -d {LISTENER_VOLUME_DIR} ]]; then
526
526
export POD_ADDRESS=$(cat {LISTENER_VOLUME_DIR}/default-address/address)
527
527
for i in {LISTENER_VOLUME_DIR}/default-address/ports/*; do
528
- export $(basename $i | tr a-z A-Z )_PORT="$(cat $i)"
528
+ export $(basename $i | tr a-z- A-Z_ )_PORT="$(cat $i)"
529
529
done
530
530
fi
531
531
{hadoop_home}/bin/hdfs {role} &
Original file line number Diff line number Diff line change 66
66
cpu: 110m
67
67
limits:
68
68
cpu: 410m
69
+ ports:
70
+ # https://github.com/stackabletech/hdfs-operator/issues/514
71
+ - name: dashed-port
72
+ containerPort: 1234
You can’t perform that action at this time.
0 commit comments