From d242ba4296f98368e1f907034bee006d73ee8f89 Mon Sep 17 00:00:00 2001 From: Zeke <105066639+Zblocker64@users.noreply.github.com> Date: Tue, 28 Jan 2025 21:43:27 -0600 Subject: [PATCH] Revert "feat: update provider to v0.6.5 (#303)" This reverts commit ed4e33f6108dee04fac981a831dd9927f33ee18f. --- charts/akash-hostname-operator/Chart.yaml | 4 ++-- charts/akash-inventory-operator/Chart.yaml | 4 ++-- charts/akash-ip-operator/Chart.yaml | 4 ++-- charts/akash-provider/Chart.yaml | 4 ++-- charts/akash-provider/scripts/run.sh | 10 ++++++++-- 5 files changed, 16 insertions(+), 10 deletions(-) diff --git a/charts/akash-hostname-operator/Chart.yaml b/charts/akash-hostname-operator/Chart.yaml index c8cd778..98d7f01 100644 --- a/charts/akash-hostname-operator/Chart.yaml +++ b/charts/akash-hostname-operator/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: 11.2.0 +version: 11.1.0 # 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 @@ -25,4 +25,4 @@ version: 11.2.0 # It is recommended to use it with quotes. # # Refs https://github.com/akash-network/provider/releases -appVersion: 0.6.5 +appVersion: 0.6.4 diff --git a/charts/akash-inventory-operator/Chart.yaml b/charts/akash-inventory-operator/Chart.yaml index 2352fed..432f424 100644 --- a/charts/akash-inventory-operator/Chart.yaml +++ b/charts/akash-inventory-operator/Chart.yaml @@ -17,11 +17,11 @@ 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: 11.2.0 +version: 11.1.0 # 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 # follow Semantic Versioning. They should reflect the version the application is using. # # Refs https://github.com/akash-network/provider/releases -appVersion: 0.6.5 +appVersion: 0.6.4 diff --git a/charts/akash-ip-operator/Chart.yaml b/charts/akash-ip-operator/Chart.yaml index 4ef412f..90bab0e 100644 --- a/charts/akash-ip-operator/Chart.yaml +++ b/charts/akash-ip-operator/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: 11.2.0 +version: 11.1.0 # 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 @@ -25,4 +25,4 @@ version: 11.2.0 # It is recommended to use it with quotes. # # Refs https://github.com/akash-network/provider/releases -appVersion: 0.6.5 +appVersion: 0.6.4 diff --git a/charts/akash-provider/Chart.yaml b/charts/akash-provider/Chart.yaml index 7a9a09e..5057438 100644 --- a/charts/akash-provider/Chart.yaml +++ b/charts/akash-provider/Chart.yaml @@ -17,11 +17,11 @@ 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: 11.2.0 +version: 11.1.2 # 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 # follow Semantic Versioning. They should reflect the version the application is using. # # Refs https://github.com/akash-network/provider/releases -appVersion: 0.6.5 +appVersion: 0.6.4 diff --git a/charts/akash-provider/scripts/run.sh b/charts/akash-provider/scripts/run.sh index 28c3535..331159d 100755 --- a/charts/akash-provider/scripts/run.sh +++ b/charts/akash-provider/scripts/run.sh @@ -19,5 +19,11 @@ type bc || exit 1 ## /scripts/refresh_provider_cert.sh -# Start provider-services -exec provider-services run +# Start provider-services and monitor its output +exec provider-services run | while read line; do + echo "$line" + if [[ "$line" == *"account sequence mismatch"* ]]; then + echo "Pattern 'account sequence mismatch' found. Restarting provider-services..." + exit 2 + fi +done