diff --git a/charts/akash-provider/Chart.yaml b/charts/akash-provider/Chart.yaml index 2e694f1..7e8da18 100644 --- a/charts/akash-provider/Chart.yaml +++ b/charts/akash-provider/Chart.yaml @@ -17,7 +17,7 @@ type: application # Versions are expected to follow Semantic Versioning (https://semver.org/) # Major version bit highlights the mainnet release (e.g. mainnet4 = 4.x.x, mainnet5 = 5.x.x, ...) -version: 9.2.4 +version: 9.2.5 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/akash-provider/scripts/liveness_checks.sh b/charts/akash-provider/scripts/liveness_checks.sh index 4b1b125..9634e32 100755 --- a/charts/akash-provider/scripts/liveness_checks.sh +++ b/charts/akash-provider/scripts/liveness_checks.sh @@ -10,13 +10,13 @@ if ! openssl x509 -in /config/provider.pem -checkend 3600 -noout > /dev/null; th fi # Provider API /status check -if ! timeout 5s curl -o /dev/null -fsk https://127.0.0.1:8443/status; then +if ! timeout 30s curl -o /dev/null -fsk https://127.0.0.1:8443/status; then echo "api /status check failed" exit 1 fi # Provider gRPC check -if ! timeout 5s curl -k -v --http2-prior-knowledge https://127.0.0.1:8444 2>&1 | grep -qi 'application/grpc'; then +if ! timeout 30s curl -k -v --http2-prior-knowledge https://127.0.0.1:8444 2>&1 | grep -qi 'application/grpc'; then echo "gRPC check failed" exit 1 fi