diff --git a/modules/container_deployment/main.tf b/modules/container_deployment/main.tf index 5b4cdb8..8230d5f 100644 --- a/modules/container_deployment/main.tf +++ b/modules/container_deployment/main.tf @@ -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 = [ diff --git a/modules/container_deployment/prom_values.yaml b/modules/container_deployment/prom_values.yaml index 99e6e34..c2f211b 100644 --- a/modules/container_deployment/prom_values.yaml +++ b/modules/container_deployment/prom_values.yaml @@ -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 diff --git a/tests/honoscript/receiver.sh b/tests/honoscript/receiver.sh index 3292b21..e853e46 100755 --- a/tests/honoscript/receiver.sh +++ b/tests/honoscript/receiver.sh @@ -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} \ diff --git a/tests/honoscript/setup.sh b/tests/honoscript/setup.sh index 935176d..fc09a2a 100755 --- a/tests/honoscript/setup.sh +++ b/tests/honoscript/setup.sh @@ -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 }