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

edge-testnet - grep the right file in K8S case #56

Merged
merged 1 commit into from
Feb 19, 2024
Merged
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
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

Loading