Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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: 1 addition & 1 deletion stacks/_templates/keycloak.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ spec:
while :
do
echo "Determining Keycloak public reachable address"
KEYCLOAK_ADDRESS=$(kubectl get svc keycloak -o json | jq -r --argfile endpoints <(kubectl get endpoints keycloak -o json) --argfile nodes <(kubectl get nodes -o json) '($nodes.items[] | select(.metadata.name == $endpoints.subsets[].addresses[].nodeName) | .status.addresses | map(select(.type == "ExternalIP" or .type == "InternalIP")) | min_by(.type) | .address | tostring) + ":" + (.spec.ports[] | select(.name == "https") | .nodePort | tostring)')
KEYCLOAK_ADDRESS=$(kubectl get svc keycloak -o json | jq -r --slurpfile endpoints <(kubectl get endpoints keycloak -o json) --slurpfile nodes <(kubectl get nodes -o json) '($nodes[0].items[] | select(.metadata.name == $endpoints[0].subsets[].addresses[].nodeName) | .status.addresses | map(select(.type == "ExternalIP" or .type == "InternalIP")) | min_by(.type) | .address | tostring) + ":" + (.spec.ports[] | select(.name == "https") | .nodePort | tostring)')
echo "Found Keycloak running at $KEYCLOAK_ADDRESS"

if [ ! -z "$KEYCLOAK_ADDRESS" ]; then
Expand Down
2 changes: 1 addition & 1 deletion stacks/airflow/hive-metastores.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: hive-iceberg
spec:
image:
productVersion: 4.1.0
productVersion: 4.2.0
clusterConfig:
database:
connString: jdbc:postgresql://postgresql-hive-iceberg:5432/hive
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: hive
spec:
image:
productVersion: 4.0.0
productVersion: 4.2.0
Comment thread
xeniape marked this conversation as resolved.
Outdated
clusterConfig:
database:
connString: jdbc:postgresql://postgresql-hive:5432/hive
Expand All @@ -24,6 +24,8 @@ metadata:
name: hive-iceberg
spec:
image:
# Cannot upgrade to 4.0.1 because we run into the same problem
# as this https://github.com/apache/iceberg-python/issues/1222
productVersion: 4.0.0
clusterConfig:
database:
Expand Down
2 changes: 2 additions & 0 deletions stacks/end-to-end-security/hive-metastore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ metadata:
name: hive-iceberg
spec:
image:
# Cannot upgrade to 4.0.1 because we run into the same problem
# as this https://github.com/apache/iceberg-python/issues/1222
productVersion: 4.0.0
clusterConfig:
authorization:
Expand Down
2 changes: 1 addition & 1 deletion stacks/trino-iceberg/hive-metastores.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: hive-iceberg
spec:
image:
productVersion: 4.1.0
productVersion: 4.2.0
clusterConfig:
database:
connString: jdbc:postgresql://postgresql-hive-iceberg:5432/hive
Expand Down
2 changes: 1 addition & 1 deletion stacks/trino-superset-s3/hive-metastore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: hive
spec:
image:
productVersion: 4.1.0
productVersion: 4.2.0
clusterConfig:
database:
connString: jdbc:postgresql://postgresql-hive:5432/hive
Expand Down