Skip to content

Commit

Permalink
edge-testnet - grep the right file in K8S case
Browse files Browse the repository at this point in the history
We are not grepping the right log file in the k8s case (copy paste
bug).

Update copyright years.
  • Loading branch information
JanneKiiskila committed Feb 19, 2024
1 parent 137b080 commit 84d7f03
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## Izuma Edge utilities 2.3.4
1. [fw-tools] - fix the grepping of edge-K8s logfile.

## Izuma Edge utilities 2.3.3
1. [fw-tools] - fix edge-k8s URL.
1. [fw-tools] - Check return code of `openssl` calls.
Expand Down
2 changes: 1 addition & 1 deletion edge-info/edge-info
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ GREEN="\u001b[32m"
YELLOW="\u001b[33m"
MAGENTA="\u001b[35m"
CYAN="\u001b[36m"
version="2.3.3"
version="2.3.4"
export LogToTerm=1
loglevel=info;

Expand Down
4 changes: 2 additions & 2 deletions fw-tools/edge-testnet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
#
# Copyright (c) 2022 Izuma Networks
# Copyright (c) 2022-2024 Izuma Networks
#
# Check connectivity to Izuma Cloud services
# - Via multiple ports (443, 5864)
Expand Down Expand Up @@ -150,7 +150,7 @@ test_k8s() {
fi

# get openssl return code
RESULT=$(grep 'Verify return code' "$bootT")
RESULT=$(grep 'Verify return code' "$k8T")
if [ -z "$RESULT" ]; then
clihelp::failure "openssl failed with: $(cat "$k8T")"
fi
Expand Down
2 changes: 1 addition & 1 deletion identity-tools/developer_identity/VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
2.3.3
2.3.4

0 comments on commit 84d7f03

Please sign in to comment.