Skip to content
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

Update hono helm chart and hono-cli #94

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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: 1 addition & 1 deletion modules/container_deployment/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ resource "helm_release" "hono" {

repository = "https://eclipse.org/packages/charts"
chart = "hono"
version = "1.9.8"
version = "1.10.14"
cleanup_on_fail = "true"
#depends_on = [helm_release.mongodb]
values = [
Expand Down
2 changes: 1 addition & 1 deletion modules/container_deployment/prom_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ prometheus:
- default
selectors:
- role: pod
label: app.kubernetes.io/instance=hono,helm.sh/chart=hono-1.9.8
label: app.kubernetes.io/instance=hono,helm.sh/chart=hono-1.10.14
tls_config:
insecure_skip_verify: true
# https://github.com/eclipse/packages/blob/9f514b9dfd6734dfb196ba8c6b1151a431bbfd7b/charts/hono/templates/_helpers.tpl#L123-L130
Expand Down
2 changes: 1 addition & 1 deletion tests/honoscript/receiver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ KAFKA_PORT=$(jq -r .KAFKA_PORT < $info)
MY_TENANT=$(jq -r .MY_TENANT < $info)
KAFKA_TRUSTSTORE_PATH=$(jq -r .KAFKA_TRUSTSTORE_PATH < $info)

java -jar hono-cli-1.9.0-exec.jar \
java -jar hono-cli-1.10.0-exec.jar \
--spring.profiles.active=receiver,local,kafka \
--tenant.id=$MY_TENANT \
--hono.kafka.commonClientConfig.bootstrap.servers=${DOMAIN_NAME}:${KAFKA_PORT} \
Expand Down
4 changes: 2 additions & 2 deletions tests/honoscript/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ function die() {
}

function check_hono_cli() {
echo '50d6699fa7893af7bfd3cc86df7e5e5488a255a2fbe35c154b23221f88abf134 hono-cli-1.9.0-exec.jar' | sha256sum -c --status
echo '5ce7a8662604dd9ea223042229bdcdf14380fe9be210e70f73b3325e9803e0b2 hono-cli-1.10.0-exec.jar' | sha256sum -c --status
}

function hono_cli_install() {
check_hono_cli && return 0

curl -m $INSTALL_TIME -o hono-cli-1.9.0-exec.jar https://download.eclipse.org/hono/hono-cli-1.9.0-exec.jar || return 1
curl -m $INSTALL_TIME -o hono-cli-1.10.0-exec.jar https://download.eclipse.org/hono/hono-cli-1.10.0-exec.jar || return 1

check_hono_cli
}
Expand Down