From 8dc249228135c60a8bc1634c3db0c830bdeceeee Mon Sep 17 00:00:00 2001 From: Zeke <105066639+Zblocker64@users.noreply.github.com> Date: Tue, 28 Jan 2025 21:44:21 -0600 Subject: [PATCH] Revert "feat: update provider to v0.6.5" (#304) Reverts akash-network/helm-charts#303 --- 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 c8cd7780..98d7f014 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 2352fed4..432f4246 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 4ef412fb..90bab0ed 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 7a9a09e9..50574387 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 28c3535c..331159d0 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